| 555 | return Object::const_iterator(NULL); |
| 556 | } |
| 557 | Object::iterator Object::end() |
| 558 | { |
| 559 | if (!children.empty()) |
| 560 | return Object::iterator(&children.back()+1); |
| 561 | else |
| 562 | return Object::iterator(NULL); |
| 563 | } |
| 564 | Object::const_iterator Object::end() const |
| 565 | { |
| 566 | if (!children.empty()) |
no test coverage detected