cmake/Tests/QtAutogen/MocInclude/Common/OwnDotUnderscore.cpp

42 lines
643 B
C++
Raw Normal View History

2020-02-01 23:06:01 +01:00
#include "OwnDotUnderscore.hpp"
#include "OwnDotUnderscore_p.h"
class OwnDotUnderscoreLocal : public QObject
{
Q_OBJECT
public:
OwnDotUnderscoreLocal();
~OwnDotUnderscoreLocal();
};
OwnDotUnderscoreLocal::OwnDotUnderscoreLocal()
{
}
OwnDotUnderscoreLocal::~OwnDotUnderscoreLocal()
{
}
OwnDotUnderscorePrivate::OwnDotUnderscorePrivate()
{
OwnDotUnderscoreLocal localObj;
}
OwnDotUnderscorePrivate::~OwnDotUnderscorePrivate()
{
}
OwnDotUnderscore::OwnDotUnderscore()
: d(new OwnDotUnderscorePrivate)
{
}
OwnDotUnderscore::~OwnDotUnderscore()
{
delete d;
}
#include "OwnDotUnderscore.moc"
#include "moc_OwnDotUnderscore.cpp"