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.

33 lines
443 B

#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"