summaryrefslogtreecommitdiff
path: root/Tests/QtAutogen/MocInclude/Common/InIncludes.in/SubOwnDot.cpp
blob: 275754dbb30562cc2468ff244e9948fac133a7f2 (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 "SubOwnDot.hpp"

#include "SubOwnDot_p.hpp"

namespace InIncludes {

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

SubOwnDotLocal::SubOwnDotLocal()
{
}

SubOwnDotLocal::~SubOwnDotLocal()
{
}

SubOwnDotPrivate::SubOwnDotPrivate()
{
}

SubOwnDotPrivate::~SubOwnDotPrivate()
{
}

SubOwnDot::SubOwnDot()
{
  SubOwnDotPrivate privateObj;
  SubOwnDotLocal localObj;
}

SubOwnDot::~SubOwnDot()
{
}

} // End of namespace

// For the local QObject
#include "SubOwnDot.moc"