#include <istream>
#include "../config.h"
#include "../Include/Buffer.h"
#include "../Include/BufferWriter.h"
Include dependency graph for BufferWriter.cxx:
Functions | |
Arxx::BufferWriter & | Arxx::operator<< (Arxx::BufferWriter &BufferWriter, const std::string &sString) |
A helper function for storing a std::string instance in a buffer. | |
Arxx::BufferWriter & | Arxx::operator<< (Arxx::BufferWriter &BufferWriter, const char *pcString) |
A helper function for storing a C string in a buffer. | |
Arxx::BufferWriter & | Arxx::operator<< (Arxx::BufferWriter &BufferWriter, const float &fValue) |
A helper function for storing float numbers in a buffer. | |
Arxx::BufferWriter & | Arxx::operator<< (Arxx::BufferWriter &BufferWriter, const Arxx::u4byte &u4Value) |
A helper function for storing Arxx::u4byte objects in a buffer. | |
Arxx::BufferWriter & | Arxx::operator<< (Arxx::BufferWriter &BufferWriter, const bool &bValue) |
A helper function for storing bool objects in a buffer. | |
Arxx::BufferWriter & | Arxx::operator<< (Arxx::BufferWriter &BufferWriter, const char &cValue) |
A helper function for storing char objects in a buffer. | |
Arxx::BufferWriter & | Arxx::operator<< (Arxx::BufferWriter &BufferWriter, const std::pair< Arxx::Buffer::size_type, std::istream * > &Stream) |
A helper function that allows filling a buffer from an std::istream. |