* @brief Called when a dynamically linked library is called * so we can load it into memory and initialize it. *************************************************************/
| 115 | * so we can load it into memory and initialize it. |
| 116 | *************************************************************/ |
| 117 | static std::string LoadLibraryHandler(smlStringEventId /*id*/, void* /*pUserData*/, Kernel* pKernel, char const* pString) |
| 118 | { |
| 119 | return pKernel->LoadExternalLibrary(pString); |
| 120 | } |
| 121 | /************************************************************* |
| 122 | * @brief Called when a command needs to be passed to a library |
| 123 | * that extends the Soar command line interface. |
nothing calls this directly
no test coverage detected