summaryrefslogtreecommitdiff
path: root/tools/build/test/qt4/mock.h
diff options
context:
space:
mode:
Diffstat (limited to 'tools/build/test/qt4/mock.h')
-rw-r--r--tools/build/test/qt4/mock.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/tools/build/test/qt4/mock.h b/tools/build/test/qt4/mock.h
new file mode 100644
index 000000000..1cc95b057
--- /dev/null
+++ b/tools/build/test/qt4/mock.h
@@ -0,0 +1,21 @@
+// (c) Copyright Juergen Hunold 2011
+// Use, modification and distribution is subject to the Boost Software
+// License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
+// http://www.boost.org/LICENSE_1_0.txt)
+
+#include <QtCore/QObject>
+
+class Mock : public QObject
+{
+ /*!
+ Test that the moc gets the necessary #defines
+ Else the moc will not see the Q_OBJECT macro, issue a warning
+ and linking will fail due to missing vtable symbols.
+ */
+#if defined(TEST_MOCK)
+ Q_OBJECT
+#endif
+ public:
+
+ Mock();
+};