110 static bool readBytes(std::istream& input,
void *pBuffer,
int length);
111 static bool readFloat(std::istream& input,
float& value);
112 static bool readInteger(std::istream& input,
int& value);
113 static bool readString(std::istream& input, std::string& strValue);
115 static bool readBytes(
char* input,
void *pBuffer,
int length);
116 static bool readFloat(
char* input,
float& value);
117 static bool readInteger(
char* input,
int& value);
118 static bool readString(
char* input, std::string& strValue);
120 static bool writeBytes(std::ostream& output,
const void *pBuffer,
int length);
121 static bool writeFloat(std::ostream& output,
float value);
122 static bool writeInteger(std::ostream& output,
int value);
123 static bool writeString(std::ostream& output,
const std::string& strValue);