17 INLINE StringDecoder::
18 StringDecoder(
const std::string &input) : _input(input) {
36 INLINE
bool StringDecoder::
38 if (_p >= _input.size()) {
48 INLINE StringUtf8Decoder::
49 StringUtf8Decoder(
const std::string &input) :
StringDecoder(input) {
55 INLINE StringUnicodeDecoder::
56 StringUtf16Decoder(
const std::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...