diff options
Diffstat (limited to 'tests/test_cases/deps/object/bar.hpp')
-rw-r--r-- | tests/test_cases/deps/object/bar.hpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/test_cases/deps/object/bar.hpp b/tests/test_cases/deps/object/bar.hpp new file mode 100644 index 0000000..9c97d54 --- /dev/null +++ b/tests/test_cases/deps/object/bar.hpp @@ -0,0 +1,9 @@ +#ifndef BAR_HPP +#define BAR_HPP + +#include <string> + +// use this object lib to extend the public symbols of shared lib 'foo' by 'bar' +std::string bar(); + +#endif |