X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=simgear%2Fprops%2Fprops_io.hxx;h=b619c04b6f33d43bd24e588865db12e7828d4c7e;hb=046d88ab2dffee1cc765e7c433e11fa9a4485e4a;hp=34fe33a3499cd895f56f12cc176f378b8f288870;hpb=d219c5c4c613e4f36d8ff1ce8af674fc96dcb543;p=simgear.git diff --git a/simgear/props/props_io.hxx b/simgear/props/props_io.hxx index 34fe33a3..b619c04b 100644 --- a/simgear/props/props_io.hxx +++ b/simgear/props/props_io.hxx @@ -17,31 +17,32 @@ #include -#include STL_STRING +#include #include #include -#include -#include +#include /** * Read properties from an XML input stream. */ void readProperties (std::istream &input, SGPropertyNode * start_node, - const std::string &base = "", int default_mode = 0); + const std::string &base = "", int default_mode = 0, + bool extended = false); /** * Read properties from an XML file. */ void readProperties (const std::string &file, SGPropertyNode * start_node, - int default_mode = 0); + int default_mode = 0, bool extended = false); /** * Read properties from an in-memory buffer. */ void readProperties (const char *buf, const int size, - SGPropertyNode * start_node, int default_mode = 0); + SGPropertyNode * start_node, int default_mode = 0, + bool extended = false); /**