aboutsummaryrefslogtreecommitdiffstats
path: root/tests/manual/moc_hpp_included/object.h
diff options
context:
space:
mode:
Diffstat (limited to 'tests/manual/moc_hpp_included/object.h')
-rw-r--r--tests/manual/moc_hpp_included/object.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/manual/moc_hpp_included/object.h b/tests/manual/moc_hpp_included/object.h
new file mode 100644
index 000000000..7d8f59c6c
--- /dev/null
+++ b/tests/manual/moc_hpp_included/object.h
@@ -0,0 +1,13 @@
+#ifndef OBJECT_H
+#define OBJECT_H
+#include <QObject>
+
+class Object : public QObject
+{
+ Q_OBJECT
+public:
+ Object(QObject *parent = 0);
+};
+
+#endif
+