blob: 6919ebcf244c2ca68cc2a2a8ccdca10fd8b62b84 (
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
36
37
38
39
40
|
#include "MixedSkipped.hpp"
#include "MixedCustom.hpp"
class MixedSkippedLocal : public QObject
{
Q_OBJECT
public:
MixedSkippedLocal();
~MixedSkippedLocal();
};
MixedSkippedLocal::MixedSkippedLocal()
{
}
MixedSkippedLocal::~MixedSkippedLocal()
{
}
MixedSkipped::MixedSkipped()
{
MixedSkippedLocal local;
MixedCustom externCutom;
// Call moc named function
moc_MixedCustom(externCutom);
}
MixedSkipped::~MixedSkipped()
{
}
// Include AUTOMOC generated moc files
#include "MixedSkipped.moc"
#include "moc_MixedSkipped.cpp"
// Include externally generated moc_ named file that is not a moc file
// and for which the relevant header is SKIP_AUTOMOC enabled
#include "moc_MixedCustom.cpp"
|