sharedlib.h 215 B

123456789101112131415
  1. #ifndef SHAREDLIB_H
  2. #define SHAREDLIB_H
  3. #include "sharedlib_export.h"
  4. #include "shareddependlib.h"
  5. struct SHAREDLIB_EXPORT SharedLibObject
  6. {
  7. SharedDependLibObject object() const;
  8. int foo() const;
  9. };
  10. #endif