Files
CMake/Tests/QtAutogen/MocCMP0100/Obj2.cpp
T
Sebastian Holtermann 9eab3cad6a Tests: Add AUTOGEN policy CMP0100 test
Add a test for policy CMP0100 that configures whether or not
AUTOMOC and AUTOUIC should process .hh header files.
2020-01-04 11:33:05 +01:00

32 lines
292 B
C++

#include "Obj2.hh"
#include <QObject>
class Obj2Private : public QObject
{
Q_OBJECT
public:
Obj2Private();
~Obj2Private();
};
Obj2Private::Obj2Private()
{
}
Obj2Private::~Obj2Private()
{
}
Obj2::Obj2()
: d(new Obj2Private)
{
}
Obj2::~Obj2()
{
delete d;
}
#include "Obj2.moc"