summaryrefslogtreecommitdiff
path: root/Tests/QtAutomoc/Adir/libA.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/QtAutomoc/Adir/libA.cpp')
-rw-r--r--Tests/QtAutomoc/Adir/libA.cpp13
1 files changed, 13 insertions, 0 deletions
diff --git a/Tests/QtAutomoc/Adir/libA.cpp b/Tests/QtAutomoc/Adir/libA.cpp
new file mode 100644
index 000000000..3968c4415
--- /dev/null
+++ b/Tests/QtAutomoc/Adir/libA.cpp
@@ -0,0 +1,13 @@
+
+#include "libA.h"
+
+LibA::LibA(QObject *parent)
+ : QObject(parent)
+{
+
+}
+
+int LibA::foo()
+{
+ return 0;
+}