Definition at line 1362 of file readertest.cpp.
◆ Ch
◆ IStreamWrapper()
| IStreamWrapper::IStreamWrapper |
( |
std::istream & | is | ) |
|
|
inline |
◆ Flush()
◆ Peek()
Definition at line 1368 of file readertest.cpp.
1368 {
1369 int c = is_.peek();
1370 return c == std::char_traits<char>::eof() ?
'\0' :
static_cast<Ch>(c);
1371 }
std::istream::char_type Ch
◆ Put()
◆ PutBegin()
◆ PutEnd()
◆ Take()
Definition at line 1373 of file readertest.cpp.
1373 {
1374 int c = is_.get();
1375 return c == std::char_traits<char>::eof() ?
'\0' :
static_cast<Ch>(c);
1376 }
◆ Tell()
Definition at line 1378 of file readertest.cpp.
1378{ return static_cast<size_t>(is_.tellg()); }
The documentation for this class was generated from the following file:
- /home/abuild/rpmbuild/BUILD/electroneum-5.1.3.1-build/electroneum-5.1.3.1/external/rapidjson/test/unittest/readertest.cpp