Adds a child node, and reparents the child
| 99 | |
| 100 | /// Adds a child node, and reparents the child |
| 101 | void addChild(ProblemStoreNode *child) |
| 102 | { |
| 103 | m_children.push_back(child); |
| 104 | child->setParent(this); |
| 105 | } |
| 106 | |
| 107 | /// Returns the label of this node, if there's one |
| 108 | virtual QString label() const{ |