| 59 | /// Returns a function pointer to the function with the name symbol_name |
| 60 | template<typename T> |
| 61 | T getSymbol(const char* symbol_name) { |
| 62 | functions.push_back(getFunctionPointer(handle, symbol_name)); |
| 63 | return (T)functions.back(); |
| 64 | } |
| 65 | |
| 66 | /// Returns true if the module was successfully loaded |
| 67 | bool isLoaded() const noexcept; |
nothing calls this directly
no test coverage detected