| 35 | } |
| 36 | |
| 37 | void PluginManager::shutdown() |
| 38 | { |
| 39 | MYGUI_ASSERT(mIsInitialise, getClassTypeName() << " is not initialised"); |
| 40 | MYGUI_LOG(Info, "* Shutdown: " << getClassTypeName()); |
| 41 | |
| 42 | unloadAllPlugins(); |
| 43 | ResourceManager::getInstance().unregisterLoadXmlDelegate(mXmlPluginTagName); |
| 44 | |
| 45 | MYGUI_LOG(Info, getClassTypeName() << " successfully shutdown"); |
| 46 | mIsInitialise = false; |
| 47 | } |
| 48 | |
| 49 | bool PluginManager::loadPlugin(std::string_view _file) |
| 50 | { |
no test coverage detected