sharedlib.cpp 177 B

123456789101112
  1. #include "sharedlib.h"
  2. SharedDependLibObject SharedLibObject::object() const
  3. {
  4. SharedDependLibObject sdlo;
  5. return sdlo;
  6. }
  7. int SharedLibObject::foo() const
  8. {
  9. return 0;
  10. }