summaryrefslogtreecommitdiffstats
path: root/Tests/QtAutogen/mocInclude/subA/SubObjA.cpp
blob: a05f6e37ed71e2dfdef8a44e8c87894dea47545d (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 "SubObjA.hpp"

namespace subA {

class SubObjA : public QObject
{
  Q_OBJECT

public:
  SubObjA() {}
  ~SubObjA() {}

  Q_SLOT
  void aSlot();
};

void SubObjA::aSlot()
{
}

void ObjA::go()
{
  SubObjA subObj;
}
}

#include "SubObjA.moc"