summaryrefslogtreecommitdiffstats
path: root/examples/enum.h
diff options
context:
space:
mode:
Diffstat (limited to 'examples/enum.h')
-rw-r--r--examples/enum.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/examples/enum.h b/examples/enum.h
index 1586074..4c54fab 100644
--- a/examples/enum.h
+++ b/examples/enum.h
@@ -2,6 +2,13 @@ class Test
{
public:
enum TEnum { Val1, Val2 };
+
+ /*! Another enum, with inline docs */
+ enum AnotherEnum
+ {
+ V1, /*!< value 1 */
+ V2 /*!< value 2 */
+ };
};
/*! \class Test