| 541 | } |
| 542 | |
| 543 | Object::iterator Object::begin() |
| 544 | { |
| 545 | if (!children.empty()) |
| 546 | return Object::iterator(&children.front()); |
| 547 | else |
| 548 | return Object::iterator(NULL); |
| 549 | } |
| 550 | Object::const_iterator Object::begin() const |
| 551 | { |
| 552 | if (!children.empty()) |
no test coverage detected