| 7683 | }; |
| 7684 | |
| 7685 | struct xpath_lexer_string |
| 7686 | { |
| 7687 | const char_t* begin; |
| 7688 | const char_t* end; |
| 7689 | |
| 7690 | xpath_lexer_string() : |
| 7691 | begin(0), |
| 7692 | end(0) |
| 7693 | { |
| 7694 | } |
| 7695 | |
| 7696 | bool operator==(const char_t* other) const |
| 7697 | { |
| 7698 | size_t length = static_cast<size_t>(end - begin); |
| 7699 | |
| 7700 | return strequalrange(other, begin, length); |
| 7701 | } |
| 7702 | }; |
| 7703 | |
| 7704 | class xpath_lexer |
| 7705 | { |