| 231 | { |
| 232 | public: |
| 233 | LibHandle(const std::string& libName) |
| 234 | : m_pLib(dlopen(libName.c_str(), RTLD_LAZY)) |
| 235 | { |
| 236 | if (!m_pLib) std::cerr << dlerror() << std::endl; |
| 237 | } |
| 238 | |
| 239 | ~LibHandle() |
| 240 | { |
nothing calls this directly
no outgoing calls
no test coverage detected