summaryrefslogtreecommitdiff
path: root/Tests/Qt4Targets/mywrapobject.h
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/Qt4Targets/mywrapobject.h')
-rw-r--r--Tests/Qt4Targets/mywrapobject.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/Tests/Qt4Targets/mywrapobject.h b/Tests/Qt4Targets/mywrapobject.h
new file mode 100644
index 000000000..de23540a2
--- /dev/null
+++ b/Tests/Qt4Targets/mywrapobject.h
@@ -0,0 +1,17 @@
+
+#ifndef MYWRAPOBJECT_H
+#define MYWRAPOBJECT_H
+
+#include <QObject>
+
+#include "myinterface.h"
+
+class MyWrapObject : public QObject, MyInterface
+{
+ Q_OBJECT
+ Q_INTERFACES(MyInterface)
+public:
+ explicit MyWrapObject(QObject *parent = 0) : QObject(parent) { }
+};
+
+#endif