summaryrefslogtreecommitdiff
path: root/tests/test_cases/deps/object/bar.hpp
blob: 9c97d54a53036559130c8066e48b94f440f3fa5e (plain)
1
2
3
4
5
6
7
8
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