111 static bool readBytes(std::istream& input,
void *pBuffer,
int length);
112 static bool readFloat(std::istream& input,
float& value);
113 static bool readShort(std::istream& input,
short& value);
114 static bool readInteger(std::istream& input,
int& value);
115 static bool readString(std::istream& input, std::string& strValue);
117 static bool readBytes(
char* input,
void *pBuffer,
int length);
118 static bool readFloat(
char* input,
float& value);
119 static bool readShort(
char* input,
short& value);
120 static bool readInteger(
char* input,
int& value);
121 static bool readString(
char* input, std::string& strValue);
123 static bool writeBytes(std::ostream& output,
const void *pBuffer,
int length);
124 static bool writeFloat(std::ostream& output,
float value);
125 static bool writeShort(std::ostream& output,
short value);
126 static bool writeInteger(std::ostream& output,
int value);
127 static bool writeString(std::ostream& output,
const std::string& strValue);