summaryrefslogtreecommitdiff
path: root/tests/headers/enum-doc.h
blob: 58e2c69e13bbdc84990b3683e39bc6d363e24234 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/** Document enum */
enum B {
    /// Document field with three slashes
    VAR_A = 0,
    /** Document field with preceeding star */
    VAR_B = 1,
    /*! Document field with preceeding exclamation */
    VAR_C = 2,
    VAR_D = 3, /**< Document field with following star */
    VAR_E = 4, /*!< Document field with following exclamation */
    /**
     * Document field with preceeding star, with a loong long multiline
     * comment.
     *
     * Very interesting documentation, definitely.
     */
    VAR_F,
};