diff options
author | Sebastian Holtermann <sebholt@xwmw.org> | 2018-01-18 09:31:49 (GMT) |
---|---|---|
committer | Sebastian Holtermann <sebholt@xwmw.org> | 2018-01-18 17:38:45 (GMT) |
commit | ff91a5d54b5458eaebab6be814624925a02eccd7 (patch) | |
tree | 8ea2dfdf77d1df28ca960d4ce6a9ca318d580d5c /Tests/QtAutogen/MocOnly/IncB.hpp | |
parent | a1d491ca2721d234eb10553a9e336f51752aa2a0 (diff) | |
download | CMake-ff91a5d54b5458eaebab6be814624925a02eccd7.zip CMake-ff91a5d54b5458eaebab6be814624925a02eccd7.tar.gz CMake-ff91a5d54b5458eaebab6be814624925a02eccd7.tar.bz2 |
Autogen: Tests: Extend AUTOMOC include patterns test
Diffstat (limited to 'Tests/QtAutogen/MocOnly/IncB.hpp')
-rw-r--r-- | Tests/QtAutogen/MocOnly/IncB.hpp | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/Tests/QtAutogen/MocOnly/IncB.hpp b/Tests/QtAutogen/MocOnly/IncB.hpp new file mode 100644 index 0000000..8331ea2 --- /dev/null +++ b/Tests/QtAutogen/MocOnly/IncB.hpp @@ -0,0 +1,15 @@ +#ifndef INCB_HPP +#define INCB_HPP + +#include <QObject> + +/// @brief Test moc include pattern in the source file +/// +class IncB : public QObject +{ + Q_OBJECT +public: + IncB(); +}; + +#endif |