diff options
Diffstat (limited to 'Tests/QtAutomoc/empty.h')
-rw-r--r-- | Tests/QtAutomoc/empty.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Tests/QtAutomoc/empty.h b/Tests/QtAutomoc/empty.h new file mode 100644 index 000000000..4566142c1 --- /dev/null +++ b/Tests/QtAutomoc/empty.h @@ -0,0 +1,9 @@ + +#include <QObject> + +class Empty : public QObject +{ + Q_OBJECT +public: + explicit Empty(QObject *parent = 0) {} +}; |