tag.cpp
Go to the documentation of this file.
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 };
Definition: tag.cpp:4
void example()
A Test class.
Definition: class.h:3