X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=simgear%2Fio%2Fsg_binobj.hxx;h=7f6726407ef0ec37e2f737b62ac6c08d05487a44;hb=427d6c3316e59aa86bbf4d3e51f522e0aba9c4fd;hp=13a826bc7b42ee0d38fc0e766c79078bea9cca40;hpb=2cfeeb4b13c3c8a9821d0c73c157e3ad67ebf18c;p=simgear.git diff --git a/simgear/io/sg_binobj.hxx b/simgear/io/sg_binobj.hxx index 13a826bc..7f672640 100644 --- a/simgear/io/sg_binobj.hxx +++ b/simgear/io/sg_binobj.hxx @@ -28,8 +28,6 @@ #define _SG_BINOBJ_HXX -#include - #include #include #include @@ -196,7 +194,7 @@ public: * @param file input file name * @return result of read */ - bool read_bin( const string& file ); + bool read_bin( const std::string& file ); /** * Write out the structures to a binary file. We assume that the @@ -207,7 +205,7 @@ public: * @param b bucket for object location * @return result of write */ - bool write_bin( const string& base, const string& name, const SGBucket& b ); + bool write_bin( const std::string& base, const std::string& name, const SGBucket& b ); /** * Write out the structures to an ASCII file. We assume that the @@ -218,7 +216,7 @@ public: * @param b bucket for object location * @return result of write */ - bool write_ascii( const string& base, const string& name, + bool write_ascii( const std::string& base, const std::string& name, const SGBucket& b ); };