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