| 191 | //------------------------------------------------------------------------------ |
| 192 | |
| 193 | void PolyNode::AddChild(PolyNode& child) |
| 194 | { |
| 195 | unsigned cnt = (unsigned)Childs.size(); |
| 196 | Childs.push_back(&child); |
| 197 | child.Parent = this; |
| 198 | child.Index = cnt; |
| 199 | } |
| 200 | //------------------------------------------------------------------------------ |
| 201 | |
| 202 | PolyNode* PolyNode::GetNext() const |
no test coverage detected