summaryrefslogtreecommitdiff
path: root/Tests/QtAutomoc/Adir/libA.h
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/QtAutomoc/Adir/libA.h')
-rw-r--r--Tests/QtAutomoc/Adir/libA.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/Tests/QtAutomoc/Adir/libA.h b/Tests/QtAutomoc/Adir/libA.h
new file mode 100644
index 000000000..03ad1e006
--- /dev/null
+++ b/Tests/QtAutomoc/Adir/libA.h
@@ -0,0 +1,18 @@
+
+#ifndef LIBA_H
+#define LIBA_H
+
+#include "liba_export.h"
+
+#include <QObject>
+
+class LIBA_EXPORT LibA : public QObject
+{
+ Q_OBJECT
+public:
+ explicit LibA(QObject *parent = 0);
+
+ int foo();
+};
+
+#endif