summaryrefslogtreecommitdiff
path: root/Tests/QtAutogen/MocInclude/Common/MixedCustom.cpp
blob: 557cc62e1a9acb5cc97b4619c88a940885129e42 (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
#include "MixedCustom.hpp"

class MixedCustomLocal : public QObject
{
  Q_OBJECT

public:
  MixedCustomLocal();
  ~MixedCustomLocal();
};

MixedCustomLocal::MixedCustomLocal()
{
}

MixedCustomLocal::~MixedCustomLocal()
{
}

MixedCustom::MixedCustom()
{
  MixedCustomLocal local;
}

MixedCustom::~MixedCustom()
{
}

// AUTOMOC generated source moc
#include "MixedCustom.moc"
// Externally generated header moc
#include "MixedCustom_extMoc.cpp"