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 / include.cpp < prev    next >
Encoding:
C/C++ Source or Header  |  1999-12-05  |  413 b   |  23 lines

  1.  
  2. /*! A test class. */
  3.  
  4. class Test
  5. {
  6.   public:
  7.     /// a member function
  8.     void example();
  9. };
  10.  
  11. /*! \page example
  12.  *  \dontinclude example_test.cpp
  13.  *  Our main function starts like this:
  14.  *  \skip main
  15.  *  \until {
  16.  *  First we create a object \c t of the Test class.
  17.  *  \skipline Test
  18.  *  Then we call the example member function 
  19.  *  \line example
  20.  *  After that our little test routine ends.
  21.  *  \line }
  22.  */
  23.