summaryrefslogtreecommitdiff
path: root/Tests/QtAutogen/MocInclude/SObjC.cpp
blob: 1e8d397f93cb8002ef0c1991b6b5097f0d11f790 (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
#include "SObjC.hpp"

void SObjCLocalFunction();

class SObjCLocal : public QObject
{
  Q_OBJECT

public:
  SObjCLocal();
  ~SObjCLocal();
};

SObjCLocal::SObjCLocal()
{
}

SObjCLocal::~SObjCLocal()
{
}

SObjC::SObjC()
{
  SObjCLocal localObject;
  SObjCLocalFunction();
}

SObjC::~SObjC()
{
}

#include "SObjC.moc"
#include "moc_SObjC.cpp"
// Include moc_ file for which the header is SKIP_AUTOMOC enabled
#include "moc_SObjCExtra.cpp"