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

  1. /** A Test class.
  2.  *  More details about this class.
  3.  */
  4.  
  5. class Test
  6. {
  7.   public:
  8.     /** An example member function.
  9.      *  More details about this function.
  10.      */
  11.     void example();
  12. };
  13.  
  14. void Test::example() {}
  15.  
  16. /** \example example_test.cpp
  17.  * This is an example of how to use the Test class.
  18.  * More details about this example.
  19.  */
  20.