summaryrefslogtreecommitdiffstats
path: root/test cases/unit/56 introspection/sharedlib/shared.cpp
blob: 5030ab75e1db5f44c6df9fdae3ddd8197d59649e (plain)
1
2
3
4
5
6
7
8
9
#include "shared.hpp"

void SharedClass::doStuff() {
  number++;
}

int SharedClass::getNumber() const {
  return number;
}