summaryrefslogtreecommitdiffstats
path: root/Tests/QtAutogen/mocInclude/EObjA.cpp
diff options
context:
space:
mode:
authorSebastian Holtermann <sebholt@xwmw.org>2017-07-09 10:45:07 (GMT)
committerSebastian Holtermann <sebholt@xwmw.org>2017-07-20 14:55:11 (GMT)
commitf5ccef17515ed4794659923706989fa059b4df38 (patch)
treea89fb812c1806f77ffa12621cb055694ac8a79dc /Tests/QtAutogen/mocInclude/EObjA.cpp
parenta8d8d2fd05e65444e52adb5164a38f3c64b247d5 (diff)
downloadCMake-f5ccef17515ed4794659923706989fa059b4df38.zip
CMake-f5ccef17515ed4794659923706989fa059b4df38.tar.gz
CMake-f5ccef17515ed4794659923706989fa059b4df38.tar.bz2
Autogen: Extended mocInclude tests
The extended tests cover more AUTOMOC use cases.
Diffstat (limited to 'Tests/QtAutogen/mocInclude/EObjA.cpp')
-rw-r--r--Tests/QtAutogen/mocInclude/EObjA.cpp43
1 files changed, 43 insertions, 0 deletions
diff --git a/Tests/QtAutogen/mocInclude/EObjA.cpp b/Tests/QtAutogen/mocInclude/EObjA.cpp
new file mode 100644
index 0000000..ca713b2
--- /dev/null
+++ b/Tests/QtAutogen/mocInclude/EObjA.cpp
@@ -0,0 +1,43 @@
+#include "EObjA.hpp"
+#include "EObjAExtra.hpp"
+#include "EObjA_p.hpp"
+
+class EObjALocal : public QObject
+{
+ Q_OBJECT
+public:
+ EObjALocal();
+ ~EObjALocal();
+};
+
+EObjALocal::EObjALocal()
+{
+}
+
+EObjALocal::~EObjALocal()
+{
+}
+
+EObjAPrivate::EObjAPrivate()
+{
+ EObjALocal localObj;
+ EObjAExtra extraObj;
+}
+
+EObjAPrivate::~EObjAPrivate()
+{
+}
+
+EObjA::EObjA()
+ : d(new EObjAPrivate)
+{
+}
+
+EObjA::~EObjA()
+{
+}
+
+// For EObjALocal
+#include "EObjA.moc"
+// - Not the own header
+#include "moc_EObjAExtra.cpp"