diff options
author | Sebastian Holtermann <sebholt@xwmw.org> | 2019-09-07 09:54:05 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2019-09-18 15:48:10 (GMT) |
commit | 706d9738a614724a96487be074e984a7e86c48c9 (patch) | |
tree | 493877be2a31e9c2bd1722a162fb98a891e324f2 /Tests/QtAutogen/MocInclude/Common/None.hpp | |
parent | d018d27c101869e4e2449f938df89d4f97c5b73c (diff) | |
download | CMake-706d9738a614724a96487be074e984a7e86c48c9.zip CMake-706d9738a614724a96487be074e984a7e86c48c9.tar.gz CMake-706d9738a614724a96487be074e984a7e86c48c9.tar.bz2 |
Tests: Merge QtAutogen.MocIncludeStrict and MocIncludeRelaxed
Diffstat (limited to 'Tests/QtAutogen/MocInclude/Common/None.hpp')
-rw-r--r-- | Tests/QtAutogen/MocInclude/Common/None.hpp | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/Tests/QtAutogen/MocInclude/Common/None.hpp b/Tests/QtAutogen/MocInclude/Common/None.hpp new file mode 100644 index 0000000..ca0713e --- /dev/null +++ b/Tests/QtAutogen/MocInclude/Common/None.hpp @@ -0,0 +1,19 @@ +#ifndef None_HPP +#define None_HPP + +#include <QObject> + +// Object source comes without any _moc/.moc includes +class NonePrivate; +class None : public QObject +{ + Q_OBJECT +public: + None(); + ~None(); + +private: + NonePrivate* const d; +}; + +#endif |