| 55 | } |
| 56 | |
| 57 | GraphModule* Context::newGraphModule(const boost::filesystem::path& fullName) { |
| 58 | // create the module |
| 59 | GraphModule* mod = nullptr; |
| 60 | { |
| 61 | auto uMod = std::make_unique<GraphModule>(*this, fullName); |
| 62 | |
| 63 | mod = uMod.get(); |
| 64 | addModule(std::move(uMod)); |
| 65 | } |
| 66 | |
| 67 | return mod; |
| 68 | } |
| 69 | |
| 70 | std::vector<std::string> Context::listModulesInWorkspace() const noexcept { |
| 71 | std::vector<std::string> moduleList; |
no test coverage detected