| 346 | } |
| 347 | |
| 348 | IUserControlCreator::Ptr UserInterfaceModule::findControl(const std::string& name) |
| 349 | { |
| 350 | auto control = _userControls.find(name); |
| 351 | |
| 352 | return control != _userControls.end() ? control->second : IUserControlCreator::Ptr(); |
| 353 | } |
| 354 | |
| 355 | void UserInterfaceModule::unregisterControl(const std::string& controlName) |
| 356 | { |
no test coverage detected