| 61 | struct AbstractTreeNode |
| 62 | { |
| 63 | AbstractTreeNode() : |
| 64 | index(-1), |
| 65 | status(NodeStatus::IDLE), |
| 66 | graphic_node(nullptr) |
| 67 | { |
| 68 | model.type = NodeType::UNDEFINED; |
| 69 | } |
| 70 | |
| 71 | NodeModel model; |
| 72 | PortsMapping ports_mapping; |
nothing calls this directly
no outgoing calls
no test coverage detected