summaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2002-04-01 15:21:13 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2002-04-01 15:21:13 (GMT)
commitd8da737acd32d4cdd8e956ee7bc8329ad73c8d58 (patch)
tree3a293a9effd1e75fc51a16da348b000001756267 /examples
parenta633d7976dbe31f1499efa59ae27ce75ff7015d7 (diff)
downloadDoxygen-d8da737acd32d4cdd8e956ee7bc8329ad73c8d58.zip
Doxygen-d8da737acd32d4cdd8e956ee7bc8329ad73c8d58.tar.gz
Doxygen-d8da737acd32d4cdd8e956ee7bc8329ad73c8d58.tar.bz2
Release-1.2.15
Diffstat (limited to 'examples')
-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