summaryrefslogtreecommitdiff
path: root/Tests/QtAutogen/MocInclude/Common/OwnDotUnderscore.cpp
blob: 056c0db84e3c62bdf46cafa0afc7ac08b04a697a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#include "OwnDotUnderscore.hpp"

#include "OwnDotUnderscore_p.h"

class OwnDotUnderscoreLocal : public QObject
{
  Q_OBJECT
public:
  OwnDotUnderscoreLocal();
  ~OwnDotUnderscoreLocal();
};

OwnDotUnderscoreLocal::OwnDotUnderscoreLocal()
{
}

OwnDotUnderscoreLocal::~OwnDotUnderscoreLocal()
{
}

OwnDotUnderscorePrivate::OwnDotUnderscorePrivate()
{
  OwnDotUnderscoreLocal localObj;
}

OwnDotUnderscorePrivate::~OwnDotUnderscorePrivate()
{
}

OwnDotUnderscore::OwnDotUnderscore()
  : d(new OwnDotUnderscorePrivate)
{
}

OwnDotUnderscore::~OwnDotUnderscore()
{
  delete d;
}

#include "OwnDotUnderscore.moc"
#include "moc_OwnDotUnderscore.cpp"