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