| 7 | { |
| 8 | |
| 9 | void InfoFileManager::registerInfoFileModule(const IMapInfoFileModulePtr& module) |
| 10 | { |
| 11 | if (_modules.find(module) != _modules.end()) |
| 12 | { |
| 13 | rWarning() << "Duplicate info file module registered: " << module->getName() << std::endl; |
| 14 | return; |
| 15 | } |
| 16 | |
| 17 | _modules.insert(module); |
| 18 | } |
| 19 | |
| 20 | void InfoFileManager::unregisterInfoFileModule(const IMapInfoFileModulePtr& module) |
| 21 | { |
no test coverage detected