| 449 | |
| 450 | |
| 451 | void |
| 452 | Reader::readNumber() |
| 453 | { |
| 454 | while ( current_ != end_ ) |
| 455 | { |
| 456 | if ( !(*current_ >= '0' && *current_ <= '9') && |
| 457 | !in( *current_, '.', 'e', 'E', '+', '-' ) ) |
| 458 | break; |
| 459 | ++current_; |
| 460 | } |
| 461 | } |
| 462 | |
| 463 | bool |
| 464 | Reader::readString() |