- changed return type of both readProperties functions to void

- changed return type of both writeProperties functions to void
This commit is contained in:
curt 2001-07-19 02:33:18 +00:00
parent a9cd67e0ce
commit 66ebe6e690

View File

@ -1067,26 +1067,26 @@ private:
/**
* Read properties from an XML input stream.
*/
bool readProperties (istream &input, SGPropertyNode * start_node,
void readProperties (istream &input, SGPropertyNode * start_node,
const string &base = "");
/**
* Read properties from an XML file.
*/
bool readProperties (const string &file, SGPropertyNode * start_node);
void readProperties (const string &file, SGPropertyNode * start_node);
/**
* Write properties to an XML output stream.
*/
bool writeProperties (ostream &output, const SGPropertyNode * start_node);
void writeProperties (ostream &output, const SGPropertyNode * start_node);
/**
* Write properties to an XML file.
*/
bool writeProperties (const string &file, const SGPropertyNode * start_node);
void writeProperties (const string &file, const SGPropertyNode * start_node);
/**