// file: $(ECE_1111)/resources/examples/eunms/myprog.h // // revision history: // 20191114 (JP): initial version // // make sure definitions are only made once: // the isip convention is to use the class name preceded by "ISIP_" // #ifndef ISIP_MYRPOG #define ISIP_MYPROG // system include files // #include #include // declare an enum // enum STATUS { FALSE, TRUE }; enum FRUIT { ORANGE, BANANA, APPLE, PEAR }; // end of include file // #endif