diff options
Diffstat (limited to 'Tests/QtAutomoc/Adir/libA.cpp')
-rw-r--r-- | Tests/QtAutomoc/Adir/libA.cpp | 13 |
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; +} |