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