| 357 | Selector (XE * base, std::string xpath) : _base (base), _xpath (xpath) {} |
| 358 | |
| 359 | ElementIterator<XE> begin() const |
| 360 | { |
| 361 | if (!_xpath .empty() && _base) |
| 362 | return ElementIterator<XE> (_base, _xpath); |
| 363 | else |
| 364 | return end(); |
| 365 | }; |
| 366 | |
| 367 | ElementIterator<XE> end() const |
| 368 | { |
no test coverage detected