Definition at line 1362 of file readertest.cpp.
◆ Ch
◆ IStreamWrapper()
IStreamWrapper::IStreamWrapper |
( |
std::istream & | is | ) |
|
|
inline |
◆ Flush()
void IStreamWrapper::Flush |
( |
| ) |
|
|
inline |
◆ Peek()
Ch IStreamWrapper::Peek |
( |
| ) |
const |
|
inline |
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 }
◆ Put()
void IStreamWrapper::Put |
( |
Ch | | ) |
|
|
inline |
◆ PutBegin()
Ch * IStreamWrapper::PutBegin |
( |
| ) |
|
|
inline |
◆ PutEnd()
size_t IStreamWrapper::PutEnd |
( |
Ch * | | ) |
|
|
inline |
◆ Take()
Ch IStreamWrapper::Take |
( |
| ) |
|
|
inline |
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()
size_t IStreamWrapper::Tell |
( |
| ) |
const |
|
inline |
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:
- libraries/fc/include/fc/crypto/webauthn_json/test/unittest/readertest.cpp