summaryrefslogtreecommitdiff
path: root/Tests/QtAutogen/Complex/Bdir/libB.h
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/QtAutogen/Complex/Bdir/libB.h')
-rw-r--r--Tests/QtAutogen/Complex/Bdir/libB.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/Tests/QtAutogen/Complex/Bdir/libB.h b/Tests/QtAutogen/Complex/Bdir/libB.h
new file mode 100644
index 000000000..e4ab788c0
--- /dev/null
+++ b/Tests/QtAutogen/Complex/Bdir/libB.h
@@ -0,0 +1,22 @@
+
+#ifndef LIBB_H
+#define LIBB_H
+
+#include "libb_export.h"
+
+#include "libA.h"
+#include <QObject>
+
+class LIBB_EXPORT LibB : public QObject
+{
+ Q_OBJECT
+public:
+ explicit LibB(QObject* parent = 0);
+
+ int foo();
+
+private:
+ LibA a;
+};
+
+#endif