summaryrefslogtreecommitdiffstats
path: root/Tests/QtAutogen/sameName/bbb/aaa/item.hpp
diff options
context:
space:
mode:
authorSebastian Holtermann <sebholt@xwmw.org>2016-08-06 13:22:54 (GMT)
committerBrad King <brad.king@kitware.com>2016-08-10 17:21:34 (GMT)
commite4f508e42397549cd966e47349d4030cb793c354 (patch)
tree2d18a87082f3aa21b0f1115e9c54b07a21bac3dc /Tests/QtAutogen/sameName/bbb/aaa/item.hpp
parent4e9b97d7397fd526e6b4e4ce43dd305cb8341ac8 (diff)
downloadCMake-e4f508e42397549cd966e47349d4030cb793c354.zip
CMake-e4f508e42397549cd966e47349d4030cb793c354.tar.gz
CMake-e4f508e42397549cd966e47349d4030cb793c354.tar.bz2
Tests/QtAutogen: Test same moc/qrc source names in different directories
Diffstat (limited to 'Tests/QtAutogen/sameName/bbb/aaa/item.hpp')
-rw-r--r--Tests/QtAutogen/sameName/bbb/aaa/item.hpp18
1 files changed, 18 insertions, 0 deletions
diff --git a/Tests/QtAutogen/sameName/bbb/aaa/item.hpp b/Tests/QtAutogen/sameName/bbb/aaa/item.hpp
new file mode 100644
index 0000000..be07ca8
--- /dev/null
+++ b/Tests/QtAutogen/sameName/bbb/aaa/item.hpp
@@ -0,0 +1,18 @@
+#ifndef BBB_AAA_ITEM_HPP
+#define BBB_AAA_ITEM_HPP
+
+#include <QObject>
+
+namespace bbb {
+namespace aaa {
+
+class Item : public QObject
+{
+ Q_OBJECT
+ Q_SLOT
+ void go();
+};
+}
+}
+
+#endif