#include #include "BodyPartT.h" using namespace std; int main() { BodyPartT i {BodyPartT::NONE}; cout << "The Body Parts are " << endl; for(i = FIRST_BODY_PART; i != BodyPartT::NONE ; i = NextBodyPartT(i)) { // cout << "\t" << BodyPartTToString(i) << endl; cout << "\t" << i << endl; } cout << i << endl; return 0; }