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

namespace subC {

class SubObjC : public QObject
{
  Q_OBJECT

public:
  SubObjC() {}
  ~SubObjC() {}

  Q_SLOT
  void aSlot();
};

void SubObjC::aSlot()
{
}

void ObjC::go()
{
  SubObjC subObj;
}
}

#include "SubObjC.moc"