| 48 | Context::~Context() = default; |
| 49 | |
| 50 | ChiModule* Context::moduleByFullName(const boost::filesystem::path& fullModuleName) const noexcept { |
| 51 | for (auto& module : mModules) { |
| 52 | if (module->fullName() == fullModuleName) { return module.get(); } |
| 53 | } |
| 54 | return nullptr; |
| 55 | } |
| 56 | |
| 57 | GraphModule* Context::newGraphModule(const boost::filesystem::path& fullName) { |
| 58 | // create the module |
no test coverage detected