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

class SubObjA : public QObject
{
  Q_OBJECT

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

  Q_SLOT
  void aSlot();
};

void SubObjA::aSlot()
{
}

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

#include "ObjA.moc"