deps_shared_iface.cpp 153 B

1234567891011
  1. #include "testSharedLibDepends.h"
  2. int main(int,char **)
  3. {
  4. TestSharedLibDepends dep;
  5. TestSharedLibRequired req;
  6. return dep.foo() + req.foo();
  7. }