summaryrefslogtreecommitdiff
path: root/Tests/QtAutogen/StaticLibraryCycle/b.h
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/QtAutogen/StaticLibraryCycle/b.h')
-rw-r--r--Tests/QtAutogen/StaticLibraryCycle/b.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/Tests/QtAutogen/StaticLibraryCycle/b.h b/Tests/QtAutogen/StaticLibraryCycle/b.h
new file mode 100644
index 000000000..ededbd803
--- /dev/null
+++ b/Tests/QtAutogen/StaticLibraryCycle/b.h
@@ -0,0 +1,13 @@
+#ifndef CLASSB_HPP
+#define CLASSB_HPP
+
+#include <QObject>
+
+class B : public QObject
+{
+ Q_OBJECT
+public:
+ B();
+};
+
+#endif