21 INLINE StringDecoder::
22 StringDecoder(
const string &input) : _input(input) {
45 INLINE
bool StringDecoder::
47 if (_p >= _input.size()) {
59 INLINE StringUtf8Decoder::
60 StringUtf8Decoder(
const string &input) :
StringDecoder(input) {
68 INLINE StringUnicodeDecoder::
69 StringUnicodeDecoder(
const string &input) :
StringDecoder(input) {
The base class to a family of classes that decode various kinds of encoded byte streams.
bool is_eof()
Returns true if the decoder has returned the last character in the string, false if there are more to...