summaryrefslogtreecommitdiffstats
path: root/Tests/RunCMake/Autogen/example.h
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/RunCMake/Autogen/example.h')
-rw-r--r--Tests/RunCMake/Autogen/example.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/Tests/RunCMake/Autogen/example.h b/Tests/RunCMake/Autogen/example.h
new file mode 100644
index 0000000..e8bfa42
--- /dev/null
+++ b/Tests/RunCMake/Autogen/example.h
@@ -0,0 +1,12 @@
+#ifndef EXAMPLE_H
+#define EXAMPLE_H
+
+#include <QObject>
+
+class Example : public QObject
+{
+ Q_OBJECT
+ Example();
+};
+
+#endif