Enum Command
enum.h
1 class Test
2 {
3  public:
4  enum TEnum { Val1, Val2 };
5 
7  enum AnotherEnum
8  {
9  V1,
10  V2
11  };
12 };
13