Enum Command

enum.h

00001 class Test
00002 {
00003   public:
00004     enum TEnum { Val1, Val2 };
00005 
00007     enum AnotherEnum 
00008     { 
00009       V1, 
00010       V2  
00011     };
00012 };
00013