| 22 | } |
| 23 | |
| 24 | void CommandManager::executeCommand(std::string_view _name, MyGUI::Any _data) |
| 25 | { |
| 26 | MapDelegate::iterator item = mDelegates.find(_name); |
| 27 | if (item != mDelegates.end()) |
| 28 | (*item).second(_name, _data); |
| 29 | } |
| 30 | |
| 31 | void CommandManager::registerCommand(std::string_view _name, CommandDelegate::IDelegate* _delegate) |
| 32 | { |
no test coverage detected