summaryrefslogtreecommitdiffstats
path: root/Tests/QtAutogen/MocInclude/EObjA.cpp
blob: 7681c29b9851e659226e79dd0c2657ef86d412d1 (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 "EObjA.hpp"
#include "EObjAExtra.hpp"
#include "EObjA_p.hpp"

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

EObjALocal::EObjALocal()
{
}

EObjALocal::~EObjALocal()
{
}

EObjAPrivate::EObjAPrivate()
{
  EObjALocal localObj;
  EObjAExtra extraObj;
}

EObjAPrivate::~EObjAPrivate()
{
}

EObjA::EObjA()
  : d(new EObjAPrivate)
{
}

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

// For EObjALocal
#include "EObjA.moc"
// - Not the own header
#include "moc_EObjAExtra.cpp"