An implementation of InputStreamer that uses a std::istream for input. More...
#include <InputStreamer.hh>
Public Member Functions | |
IStreamer (std::istream &is) | |
size_t | readByte (uint8_t &byte) |
size_t | readWord (uint32_t &word) |
size_t | readLongWord (uint64_t &word) |
size_t | readBytes (void *bytes, size_t size) |
An implementation of InputStreamer that uses a std::istream for input.
Right now this class is very bare-bones, without much in way of error handling.