aboutsummaryrefslogtreecommitdiff
path: root/test cases/unit/56 introspection/sharedlib/shared.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test cases/unit/56 introspection/sharedlib/shared.cpp')
-rw-r--r--test cases/unit/56 introspection/sharedlib/shared.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/test cases/unit/56 introspection/sharedlib/shared.cpp b/test cases/unit/56 introspection/sharedlib/shared.cpp
new file mode 100644
index 0000000..5030ab7
--- /dev/null
+++ b/test cases/unit/56 introspection/sharedlib/shared.cpp
@@ -0,0 +1,9 @@
+#include "shared.hpp"
+
+void SharedClass::doStuff() {
+ number++;
+}
+
+int SharedClass::getNumber() const {
+ return number;
+}