diff options
author | Sebastian Holtermann <sebholt@xwmw.org> | 2017-12-08 19:12:30 (GMT) |
---|---|---|
committer | Sebastian Holtermann <sebholt@xwmw.org> | 2017-12-13 12:50:18 (GMT) |
commit | 45b6776ab301f4b5ec51e27863ffe061b1a0d60a (patch) | |
tree | d5ab37a3cfee151068c2a540f166d0512061ea8a /Tests/QtAutogen/SameName/ccc/item.hpp | |
parent | d7868687c814cded6319dd0cfd9fff5c737bf0f0 (diff) | |
download | CMake-45b6776ab301f4b5ec51e27863ffe061b1a0d60a.zip CMake-45b6776ab301f4b5ec51e27863ffe061b1a0d60a.tar.gz CMake-45b6776ab301f4b5ec51e27863ffe061b1a0d60a.tar.bz2 |
Autogen: Tests: Separate SameName test
Diffstat (limited to 'Tests/QtAutogen/SameName/ccc/item.hpp')
-rw-r--r-- | Tests/QtAutogen/SameName/ccc/item.hpp | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Tests/QtAutogen/SameName/ccc/item.hpp b/Tests/QtAutogen/SameName/ccc/item.hpp new file mode 100644 index 0000000..20d9dd9 --- /dev/null +++ b/Tests/QtAutogen/SameName/ccc/item.hpp @@ -0,0 +1,18 @@ +#ifndef CCC_ITEM_HPP +#define CCC_ITEM_HPP + +#include <QObject> +// Include ui_view.h in source and header +#include <ccc/ui_view.h> + +namespace ccc { + +class Item : public QObject +{ + Q_OBJECT + Q_SLOT + void go(); +}; +} + +#endif |