enum.h
Go to the documentation of this file.
1 class Enum_Test
2 {
3  public:
4  enum TEnum { Val1, Val2 };
5 
6  /*! Another enum, with inline docs */
7  enum AnotherEnum
8  {
9  V1, /*!< value 1 */
10  V2 /*!< value 2 */
11  };
12 };
13 
14 /*! \class Enum_Test
15  * The class description.
16  */
17 
18 /*! \enum Enum_Test::TEnum
19  * A description of the enum type.
20  */
21 
22 /*! \var Enum_Test::TEnum Enum_Test::Val1
23  * The description of the first enum value.
24  */
Definition: enum.h:1
TEnum
Definition: enum.h:4
AnotherEnum
Definition: enum.h:7