#include <string>#include <istream>#include <ostream>Go to the source code of this file.
Classes | |
| class | data_t |
| A type representing a contigous byte stream. More... | |
Typedefs | |
| typedef unsigned char | uint8_t |
| typedef unsigned short | uint16_t |
| typedef unsigned int | uint32_t |
| typedef unsigned long long | uint64_t |
| typedef unsigned char | byte_t |
| A type with exactly 8 bits. | |
| typedef std::basic_istream < byte_t > | input_stream |
| input stream for connection to master agent | |
Functions | |
| std::ostream & | operator<< (std::ostream &out, const data_t &stream) |
| typedef unsigned char byte_t |
A type with exactly 8 bits.
The char types in C++ (char, unsigned char, signed char) are defined to have at least 8 bits. Although these types probably have 8 bits on virtually every platform, I'm a perfectionist here and define my own type, so that it can be redefined in one central place.
| typedef std::basic_istream<byte_t> input_stream |