| 5 | namespace chi { |
| 6 | |
| 7 | NodeType::NodeType(ChiModule& mod, std::string name, std::string description) |
| 8 | : mModule{&mod}, |
| 9 | mContext{&mod.context()}, |
| 10 | mName{std::move(name)}, |
| 11 | mDescription{std::move(description)} {} |
| 12 | |
| 13 | NodeType::~NodeType() = default; |
| 14 |
nothing calls this directly
no outgoing calls
no test coverage detected