| 6 | |
| 7 | namespace chi { |
| 8 | ChiModule::ChiModule(Context& contextArg, boost::filesystem::path moduleFullName) |
| 9 | : mFullName{std::move(moduleFullName)}, mContext{&contextArg} { |
| 10 | mName = mFullName.filename().string(); |
| 11 | } |
| 12 | |
| 13 | Result ChiModule::addDependency(const boost::filesystem::path& newDepFullPath) { |
| 14 | Result res = context().loadModule(newDepFullPath); |
nothing calls this directly
no outgoing calls
no test coverage detected