| 30 | } |
| 31 | |
| 32 | void InfoFileManager::foreachModule(const std::function<void(IMapInfoFileModule&)>& functor) |
| 33 | { |
| 34 | for (const IMapInfoFileModulePtr& module : _modules) |
| 35 | { |
| 36 | functor(*module); |
| 37 | } |
| 38 | } |
| 39 | |
| 40 | const std::string& InfoFileManager::getName() const |
| 41 | { |
no outgoing calls
no test coverage detected