summaryrefslogtreecommitdiffstats
path: root/Tests/QtAutogen/MocOnly/IncB.hpp
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2018-01-22 15:23:14 (GMT)
committerKitware Robot <kwrobot@kitware.com>2018-01-22 15:23:41 (GMT)
commitb058d92b33ab37a56ac4dcf2f1e49aec89f554e3 (patch)
tree6b81a116a57d7f8fcc6c023a4f3107a7c4634ca3 /Tests/QtAutogen/MocOnly/IncB.hpp
parent5d13fa1010223a65e64f5270db06ada9c6a0ae0d (diff)
parentb4e6911bf51c05001c1b3cbcc04587afa6ba4577 (diff)
downloadCMake-b058d92b33ab37a56ac4dcf2f1e49aec89f554e3.zip
CMake-b058d92b33ab37a56ac4dcf2f1e49aec89f554e3.tar.gz
CMake-b058d92b33ab37a56ac4dcf2f1e49aec89f554e3.tar.bz2
Merge topic 'autogen-first-line-fix'
b4e6911b Autogen: Tests: Extend AUTOUIC include patterns test ff91a5d5 Autogen: Tests: Extend AUTOMOC include patterns test a1d491ca Autogen: AUTOMOC/UIC fix for moc/uic include on the first line Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !1670
Diffstat (limited to 'Tests/QtAutogen/MocOnly/IncB.hpp')
-rw-r--r--Tests/QtAutogen/MocOnly/IncB.hpp15
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