summaryrefslogtreecommitdiffstats
path: root/Tests/QtAutogen/mocInclude/ObjD.cpp
blob: c18aec152df565ce4c8fa08b0f9a17b6ef214597 (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
#include "ObjD.hpp"

class SubObjD : public QObject
{
  Q_OBJECT

public:
  SubObjD() {}
  ~SubObjD() {}

  Q_SLOT
  void aSlot();
};

void SubObjD::aSlot()
{
}

void ObjD::go()
{
  SubObjD subObj;
}

#include "ObjD.moc"
// Header in subdirectory
#include "subA/moc_SubObjA.cpp"