Chameleon

Chameleon Svn Source Tree

Root/branches/xZenu/src/util/doxygen/examples/afterdoc.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.
1/*! A test class */
2
3class Test
4{
5 public:
6 /** An enum type.
7 * The documentation block cannot be put after the enum!
8 */
9 enum EnumType
10 {
11 int EVal1, /**< enum value 1 */
12 int EVal2 /**< enum value 2 */
13 };
14 void member(); //!< a member function.
15
16 protected:
17 int value; /*!< an integer value */
18};
19

Archive Download this file

Revision: 1406