summaryrefslogtreecommitdiffstats
path: root/Tests/QtAutogen/MocInclude/Common/OtherUnderscore.cpp
blob: 219619fcf8e5fca3a46831b252bc0082ffc069e9 (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
42
43
44
#include "OtherUnderscore.hpp"
#include "OtherUnderscoreExtra.hpp"
#include "OtherUnderscore_p.hpp"

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

OtherUnderscoreLocal::OtherUnderscoreLocal()
{
}

OtherUnderscoreLocal::~OtherUnderscoreLocal()
{
}

OtherUnderscorePrivate::OtherUnderscorePrivate()
{
  OtherUnderscoreLocal localObj;
  OtherUnderscoreExtra extraObj;
}

OtherUnderscorePrivate::~OtherUnderscorePrivate()
{
}

OtherUnderscore::OtherUnderscore()
  : d(new OtherUnderscorePrivate)
{
}

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

// For OtherUnderscoreLocal
#include "OtherUnderscore.moc"
// - Not the own header
#include "moc_OtherUnderscoreExtra.cpp"