#include "tnlByteBuffer.h"
#include "tnlConnectionStringTable.h"
Namespaces | |
namespace | TNL |
Defines | |
#define | DeclareTemplatizedReadWrite(T) |
Helper macro used in BitStream declaration. |
|
Value: inline bool write(T value) { T temp = convertHostToLEndian(value); return write(sizeof(T), &temp); } \ inline bool read(T *value) { T temp; bool success = read(sizeof(T), &temp); *value = convertLEndianToHost(temp); return success;}
|