1 #ifndef RAPIDJSON_GENERICREADSTREAM_H_
2 #define RAPIDJSON_GENERICREADSTREAM_H_
22 return static_cast<char>(is_.peek());
26 return static_cast<char>(is_.get());
30 return (
int)is_.tellg();
44 #endif // RAPIDJSON_GENERICREADSTREAM_H_
GenericReadStream(std::istream &is)
Constructor.
Definition: genericreadstream.h:18
#define RAPIDJSON_ASSERT(x)
Assertion.
Definition: rapidjson.h:146
common definitions and configuration
char Ch
Character type (byte).
Definition: genericreadstream.h:12
Wrapper of std::istream for input.
Definition: genericreadstream.h:10