33 lines
443 B
C++
33 lines
443 B
C++
|
#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"
|