| 568 | } // anon namespace |
| 569 | |
| 570 | GraphModule::GraphModule(Context& cont, boost::filesystem::path fullName, |
| 571 | const std::vector<boost::filesystem::path>& dependencies) |
| 572 | : ChiModule(cont, fullName) { |
| 573 | // load the dependencies from the context |
| 574 | for (const auto& dep : dependencies) { addDependency(dep); } |
| 575 | } |
| 576 | |
| 577 | std::vector<std::string> GraphModule::typeNames() const { |
| 578 | std::vector<std::string> ret; |
nothing calls this directly
no outgoing calls
no test coverage detected