home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / doxg1211.zip / doxygen.zip / examples / enum.h < prev    next >
C/C++ Source or Header  |  1999-12-04  |  247b  |  18 lines

  1. class Test
  2. {
  3.   public:
  4.     enum TEnum { Val1, Val2 };
  5. };
  6.  
  7. /*! \class Test
  8.  * The class description.
  9.  */
  10.  
  11. /*! \enum Test::TEnum
  12.  * A description of the enum type.
  13.  */
  14.  
  15. /*! \var Test::TEnum Test::Val1
  16.  * The description of the first enum value.
  17.  */
  18.