summaryrefslogtreecommitdiff
path: root/test cases/unit/52 introspection/sharedlib/shared.cpp
diff options
context:
space:
mode:
authorDaniel Mensinger <daniel@mensinger-ka.de>2019-01-16 11:07:31 +0100
committerJussi Pakkanen <jpakkane@gmail.com>2019-01-16 19:10:47 +0200
commit2bb69ad50b3267bb18252cb5f87b339736658076 (patch)
tree03f08bbb01caaac2c02798b058942c8ea78337c5 /test cases/unit/52 introspection/sharedlib/shared.cpp
parent66ac6f6b3d24e1b38b2417964f4e127d1d37888e (diff)
downloadmeson-2bb69ad50b3267bb18252cb5f87b339736658076.tar.gz
Renamed unit test directories
Diffstat (limited to 'test cases/unit/52 introspection/sharedlib/shared.cpp')
-rw-r--r--test cases/unit/52 introspection/sharedlib/shared.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/test cases/unit/52 introspection/sharedlib/shared.cpp b/test cases/unit/52 introspection/sharedlib/shared.cpp
new file mode 100644
index 000000000..5030ab75e
--- /dev/null
+++ b/test cases/unit/52 introspection/sharedlib/shared.cpp
@@ -0,0 +1,9 @@
+#include "shared.hpp"
+
+void SharedClass::doStuff() {
+ number++;
+}
+
+int SharedClass::getNumber() const {
+ return number;
+}