summaryrefslogtreecommitdiff
path: root/Tests/QtAutomoc/libC.h
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/QtAutomoc/libC.h')
-rw-r--r--Tests/QtAutomoc/libC.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/Tests/QtAutomoc/libC.h b/Tests/QtAutomoc/libC.h
new file mode 100644
index 000000000..4fb4a2cf4
--- /dev/null
+++ b/Tests/QtAutomoc/libC.h
@@ -0,0 +1,22 @@
+
+#ifndef LIBC_H
+#define LIBC_H
+
+#include "libc_export.h"
+
+#include <QObject>
+#include "libB.h"
+
+class LIBC_EXPORT LibC : public QObject
+{
+ Q_OBJECT
+public:
+ explicit LibC(QObject *parent = 0);
+
+
+ int foo();
+private:
+ LibB b;
+};
+
+#endif