summaryrefslogtreecommitdiffstats
path: root/examples/tag.cpp
blob: 6497dd4200c690e8cf2a1b7af6bb2f98802f6008 (plain)
1
2
3
4
5
6
7
8
9
/*! A class that is inherited from the external class Test.
*/

class Tag : public Test
{
  public:
    /*! an overloaded member. */
    void example();
};