Chameleon

Chameleon Svn Source Tree

Root/branches/xZenu/src/util/doxygen/examples/enum.h

Source at commit 1406 created 12 years 10 months ago.
By meklort, Revert drivers.c so that kexts are only loaded when OSBundleRequired is set and that value is not safe mode. Added some comments about it too.
1class 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 Test
15 * The class description.
16 */
17
18/*! \enum Test::TEnum
19 * A description of the enum type.
20 */
21
22/*! \var Test::TEnum Test::Val1
23 * The description of the first enum value.
24 */
25

Archive Download this file

Revision: 1406