diff options
author | Sebastian Holtermann <sebholt@xwmw.org> | 2017-12-08 18:27:10 (GMT) |
---|---|---|
committer | Sebastian Holtermann <sebholt@xwmw.org> | 2017-12-13 12:48:28 (GMT) |
commit | 7971202b3c58f78008f5b651c048910fcc49c49f (patch) | |
tree | 489a6b1b9afba6959c04c59edebd8d28b9a7e4e3 /Tests/QtAutogen/MocDepends/simpleLib.hpp.in | |
parent | fb7e52ca3d920ca1de8b2abb23da3d83db988eca (diff) | |
download | CMake-7971202b3c58f78008f5b651c048910fcc49c49f.zip CMake-7971202b3c58f78008f5b651c048910fcc49c49f.tar.gz CMake-7971202b3c58f78008f5b651c048910fcc49c49f.tar.bz2 |
Autogen: Tests: Separate MocDepends test
Diffstat (limited to 'Tests/QtAutogen/MocDepends/simpleLib.hpp.in')
-rw-r--r-- | Tests/QtAutogen/MocDepends/simpleLib.hpp.in | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Tests/QtAutogen/MocDepends/simpleLib.hpp.in b/Tests/QtAutogen/MocDepends/simpleLib.hpp.in new file mode 100644 index 0000000..b65b0cb --- /dev/null +++ b/Tests/QtAutogen/MocDepends/simpleLib.hpp.in @@ -0,0 +1,14 @@ +#ifndef SIMPLE_LIB_H +#define SIMPLE_LIB_H + +#include <QObject> + +class SimpleLib : public QObject +{ + Q_OBJECT +public: + SimpleLib(); + ~SimpleLib(); +}; + +#endif |