CMake/Tests/QtAutogen/MocCMP0100/Obj2.hh
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

21 lines
235 B
C++

#ifndef OBJ2_HH
#define OBJ2_HH
#include <QObject>
// Qt enabled private class
class Obj2Private;
// Qt enabled class
class Obj2 : public QObject
{
Q_OBJECT
public:
Obj2();
~Obj2();
private:
Obj2Private* const d;
};
#endif