The InputStream class provides reading of binary data from an istream. More...
#include <Stream.h>
Public Member Functions | |
InputStream (std::istream &rin) | |
operator bool () const | |
InputStream & | operator>> (double &d) |
InputStream & | operator>> (float &f) |
InputStream & | operator>> (uint64_t &ul) |
InputStream & | operator>> (int64_t &l) |
InputStream & | operator>> (uint32_t &ui) |
InputStream & | operator>> (int32_t &i) |
InputStream & | operator>> (uint16_t &us) |
InputStream & | operator>> (int16_t &s) |
InputStream & | operator>> (uint8_t &uch) |
InputStream & | operator>> (int8_t &ch) |
InputStream & | operator>> (bool &b) |
~InputStream () |
The InputStream class provides reading of binary data from an istream.
Definition at line 90 of file Stream.h.
InputStream::InputStream | ( | std::istream & | rin | ) |
Definition at line 146 of file Stream.cpp.
InputStream::~InputStream | ( | ) |
Definition at line 150 of file Stream.cpp.
InputStream & InputStream::operator>> | ( | double & | d | ) |
Definition at line 221 of file Stream.cpp.
References Base::Stream::_swap.
InputStream & InputStream::operator>> | ( | float & | f | ) |
Definition at line 214 of file Stream.cpp.
References Base::Stream::_swap.
InputStream & InputStream::operator>> | ( | uint64_t & | ul | ) |
Definition at line 207 of file Stream.cpp.
References Base::Stream::_swap.
InputStream & InputStream::operator>> | ( | int64_t & | l | ) |
Definition at line 200 of file Stream.cpp.
References Base::Stream::_swap.
InputStream & InputStream::operator>> | ( | uint32_t & | ui | ) |
Definition at line 193 of file Stream.cpp.
References Base::Stream::_swap.
InputStream & InputStream::operator>> | ( | int32_t & | i | ) |
Definition at line 186 of file Stream.cpp.
References Base::Stream::_swap.
InputStream & InputStream::operator>> | ( | uint16_t & | us | ) |
Definition at line 179 of file Stream.cpp.
References Base::Stream::_swap.
InputStream & InputStream::operator>> | ( | int16_t & | s | ) |
Definition at line 172 of file Stream.cpp.
References Base::Stream::_swap.
InputStream & InputStream::operator>> | ( | uint8_t & | uch | ) |
Definition at line 166 of file Stream.cpp.
InputStream & InputStream::operator>> | ( | int8_t & | ch | ) |
Definition at line 160 of file Stream.cpp.
InputStream & InputStream::operator>> | ( | bool & | b | ) |
Definition at line 154 of file Stream.cpp.