summaryrefslogtreecommitdiffstats
path: root/examples/resdefine.cpp
blob: 05a77c500b0909ab65272bc26bcddba5b1afd78a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#define ExportedName InternalName

class InternalName
{
  public:
    InternalName() {}
   ~InternalName() {}
};

/*! \class ExportedName
 *  This class's real name is InternalName but everyone should use 
 *  ExportedName.
 */

/*! \fn ExportedName::ExportedName()
 *  The constructor
 */

/*! \fn ExportedName::~ExportedName()
 *  The destructor
 */