home *** CD-ROM | disk | FTP | other *** search
/ Game Programming in C++ - Start to Finish / GameProgrammingS.iso / tools_install / doxygen-1.4.4-setup.exe / {app} / html / examples / example.cpp < prev    next >
Encoding:
C/C++ Source or Header  |  1999-12-05  |  338 b   |  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.