X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=simgear%2Fmisc%2Fzfstream.hxx;h=a8635483d9e619c942fe8eed6117dac838e55fba;hb=2e71b64de1d937e2b7c34dd4a2365be455d0b82a;hp=e226166c985bff5ef7db4ab0da2fbab4796e2061;hpb=4362eb79e627cbcc0fbff5de959ae47b4544b788;p=simgear.git diff --git a/simgear/misc/zfstream.hxx b/simgear/misc/zfstream.hxx index e226166c..a8635483 100644 --- a/simgear/misc/zfstream.hxx +++ b/simgear/misc/zfstream.hxx @@ -18,10 +18,9 @@ // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU // Library General Public License for more details. // -// You should have received a copy of the GNU Library General Public -// License along with this library; if not, write to the -// Free Software Foundation, Inc., 59 Temple Place - Suite 330, -// Boston, MA 02111-1307, USA. +// You should have received a copy of the GNU General Public License +// along with this program; if not, write to the Free Software +// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. // // $Id$ @@ -32,75 +31,33 @@ #include -#ifdef SG_HAVE_STD_INCLUDES -# include -# include +#include +#include -# define ios_openmode ios_base::openmode -# define ios_in ios_base::in -# define ios_out ios_base::out -# define ios_app ios_base::app -# define ios_binary ios_base::binary +#define ios_openmode std::ios_base::openmode +#define ios_in std::ios_base::in +#define ios_out std::ios_base::out +#define ios_app std::ios_base::app +#define ios_binary std::ios_base::binary -# define ios_seekdir ios_base::seekdir +#define ios_seekdir std::ios_base::seekdir -# define ios_badbit ios_base::badbit -# define ios_failbit ios_base::failbit - -SG_USING_STD(streambuf); -SG_USING_STD(ios_base); -SG_USING_STD(streampos); -SG_USING_STD(streamoff); - -#else - -# ifdef SG_HAVE_STREAMBUF -# include -# include -# else -# include -# endif - -//# define ios_openmode ios::open_mode -# define ios_openmode int -# define ios_in ios::in -# define ios_out ios::out -# define ios_app ios::app - -#if defined(__GNUC__) && __GNUC_MINOR__ < 8 -# define ios_binary ios::bin -#else -# define ios_binary ios::binary -#endif - -# define ios_seekdir ios::seek_dir - -# define ios_badbit ios::badbit -# define ios_failbit ios::failbit - -# include - -#endif // SG_HAVE_STD_INCLUDES +#define ios_badbit std::ios_base::badbit +#define ios_failbit std::ios_base::failbit /** * A C++ I/O streams interface to the zlib gz* functions. */ #ifdef SG_NEED_STREAMBUF_HACK -class gzfilebuf : public __streambuf +class gzfilebuf : public __streambuf { + typedef __streambuf parent; #else -class gzfilebuf : public streambuf -#endif -{ -public: - -#ifndef SG_HAVE_STD_INCLUDES - typedef char_traits traits_type; - typedef char_traits::int_type int_type; - // typedef char_traits::pos_type pos_type; - // typedef char_traits::off_type off_type; +class gzfilebuf : public std::streambuf { + typedef std::streambuf parent; #endif +public: /** Constructor */ gzfilebuf(); @@ -133,7 +90,7 @@ public: bool is_open() const { return (file != NULL); } /** @return stream position */ - virtual streampos seekoff( streamoff off, ios_seekdir way, int which ); + virtual std::streampos seekoff( std::streamoff off, ios_seekdir way, int which ); /** sync the stream */ virtual int sync(); @@ -141,12 +98,8 @@ public: protected: virtual int_type underflow(); -#ifndef SG_HAVE_STD_INCLUDES - virtual int_type overflow( int_type c = traits_type::eof() ); -#else - virtual int_type overflow( int_type c = streambuf::traits_type::eof() ); -#endif + virtual int_type overflow( int_type c = parent::traits_type::eof() ); private: int_type flushbuf();