summaryrefslogtreecommitdiffstats
path: root/Tests/QtAutogen/StaticLibraryCycle/c.h
diff options
context:
space:
mode:
authorSebastian Holtermann <sebholt@xwmw.org>2017-12-08 19:22:27 (GMT)
committerSebastian Holtermann <sebholt@xwmw.org>2017-12-13 12:50:18 (GMT)
commit6ce6fd426ee7649a40c2f253dbc5f814650f0992 (patch)
treecac6840f845f60df35ed21f7bb8c739006cb01a1 /Tests/QtAutogen/StaticLibraryCycle/c.h
parent45b6776ab301f4b5ec51e27863ffe061b1a0d60a (diff)
downloadCMake-6ce6fd426ee7649a40c2f253dbc5f814650f0992.zip
CMake-6ce6fd426ee7649a40c2f253dbc5f814650f0992.tar.gz
CMake-6ce6fd426ee7649a40c2f253dbc5f814650f0992.tar.bz2
Autogen: Tests: Separate StaticLibraryCycle test
Diffstat (limited to 'Tests/QtAutogen/StaticLibraryCycle/c.h')
-rw-r--r--Tests/QtAutogen/StaticLibraryCycle/c.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/Tests/QtAutogen/StaticLibraryCycle/c.h b/Tests/QtAutogen/StaticLibraryCycle/c.h
new file mode 100644
index 0000000..20f3725
--- /dev/null
+++ b/Tests/QtAutogen/StaticLibraryCycle/c.h
@@ -0,0 +1,13 @@
+#ifndef CLASSC_HPP
+#define CLASSC_HPP
+
+#include <QObject>
+
+class C : public QObject
+{
+ Q_OBJECT
+public:
+ C();
+};
+
+#endif