aboutsummaryrefslogtreecommitdiffstats
path: root/tests/manual/pch/myobject.h
diff options
context:
space:
mode:
Diffstat (limited to 'tests/manual/pch/myobject.h')
-rw-r--r--tests/manual/pch/myobject.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/manual/pch/myobject.h b/tests/manual/pch/myobject.h
new file mode 100644
index 000000000..17dfd48c8
--- /dev/null
+++ b/tests/manual/pch/myobject.h
@@ -0,0 +1,12 @@
+#ifndef MYOBJECT_H
+#define MYOBJECT_H
+
+class MyObject
+{
+public:
+ MyObject();
+ ~MyObject();
+};
+
+#endif
+