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

  1. /*! A class that is inherited from the external class Test.
  2. */
  3.  
  4. class Tag : public Test
  5. {
  6.   public:
  7.     /*! an overloaded member. */
  8.     void example();
  9. };
  10.