You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
707 B
41 lines
707 B
5 years ago
|
#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"
|