diff options
author | Brad King <brad.king@kitware.com> | 2017-06-21 12:38:05 (GMT) |
---|---|---|
committer | Kitware Robot <kwrobot@kitware.com> | 2017-06-21 12:38:11 (GMT) |
commit | d7c694b2e7ba43f634e920800efe138987d3b248 (patch) | |
tree | bd5f487c9e5dd84e509393e8bae5475e6f2a223e /Tests/QtAutogen/mocOnlySource/main.cpp | |
parent | 1ac07c71d8b410a9c1fedb4854786890b05e7ae0 (diff) | |
parent | 50b3837c6420865f46911f7359040dcb65fc112f (diff) | |
download | CMake-d7c694b2e7ba43f634e920800efe138987d3b248.zip CMake-d7c694b2e7ba43f634e920800efe138987d3b248.tar.gz CMake-d7c694b2e7ba43f634e920800efe138987d3b248.tar.bz2 |
Merge topic 'autogen_brace'
50b3837c Autogen: Q_OBJECT behind brace test
01d2b745 Autogen: Check for Q_OBJECT/Q_GADGET after brace
Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !986
Diffstat (limited to 'Tests/QtAutogen/mocOnlySource/main.cpp')
-rw-r--r-- | Tests/QtAutogen/mocOnlySource/main.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Tests/QtAutogen/mocOnlySource/main.cpp b/Tests/QtAutogen/mocOnlySource/main.cpp new file mode 100644 index 0000000..06f8d81 --- /dev/null +++ b/Tests/QtAutogen/mocOnlySource/main.cpp @@ -0,0 +1,9 @@ +#include "StyleA.hpp" +#include "StyleB.hpp" + +int main(int argv, char** args) +{ + StyleA styleA; + StyleB styleB; + return 0; +} |