1 /** Document enum */
2 enum B {
3     /// Document field with three slashes
4     VAR_A = 0,
5     /** Document field with preceeding star */
6     VAR_B = 1,
7     /*! Document field with preceeding exclamation */
8     VAR_C = 2,
9     VAR_D = 3, /**< Document field with following star */
10     VAR_E = 4, /*!< Document field with following exclamation */
11     /**
12      * Document field with preceeding star, with a loong long multiline
13      * comment.
14      *
15      * Very interesting documentation, definitely.
16      */
17     VAR_F,
18 };
19