aboutsummaryrefslogtreecommitdiffstats
path: root/tests/manual/pch/myobject.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/manual/pch/myobject.cpp')
-rw-r--r--tests/manual/pch/myobject.cpp13
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/manual/pch/myobject.cpp b/tests/manual/pch/myobject.cpp
new file mode 100644
index 000000000..9f3f93740
--- /dev/null
+++ b/tests/manual/pch/myobject.cpp
@@ -0,0 +1,13 @@
+#include <iostream>
+#include "myobject.h"
+
+MyObject::MyObject()
+{
+ std::cout << "MyObject::MyObject()\n";
+}
+
+MyObject::~MyObject()
+{
+ std::cout << "MyObject::~MyObject()" << std::endl;
+}
+