#include #include "BodyPartT.h" using namespace std; int main() { BodyPartT i{FIRST_BODY_PART}; for(i = FIRST_BODY_PART; i < BodyPartT::NONE; ++i) { cout << i << endl; } return 0; }