| 3 | #include "behaviortree_cpp/exceptions.h" |
| 4 | |
| 5 | BT::SharedLibrary::SharedLibrary(const std::string& path, int flags) |
| 6 | { |
| 7 | load(path, flags); |
| 8 | } |
| 9 | |
| 10 | void* BT::SharedLibrary::getSymbol(const std::string& name) |
| 11 | { |
nothing calls this directly
no outgoing calls
no test coverage detected