1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/ossrv_pub/boost_apis/boost/iostreams/detail/iostream.hpp Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,33 @@
1.4 +// (C) Copyright Jonathan Turkanis 2003.
1.5 +// Distributed under the Boost Software License, Version 1.0. (See accompanying
1.6 +// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt.)
1.7 +
1.8 +// See http://www.boost.org/libs/iostreams for documentation.
1.9 +
1.10 +#ifndef BOOST_IOSTREAMS_DETAIL_IOSTREAM_HPP_INCLUDED
1.11 +#define BOOST_IOSTREAMS_DETAIL_IOSTREAM_HPP_INCLUDED
1.12 +
1.13 +#if defined(_MSC_VER) && (_MSC_VER >= 1020)
1.14 +# pragma once
1.15 +#endif
1.16 +
1.17 +#include <boost/iostreams/detail/config/wide_streams.hpp>
1.18 +#ifndef BOOST_IOSTREAMS_NO_STREAM_TEMPLATES
1.19 +# include <istream>
1.20 +# include <ostream>
1.21 +#else
1.22 +# include <iostream.h>
1.23 +#endif
1.24 +
1.25 +#ifndef BOOST_IOSTREAMS_NO_STREAM_TEMPLATES
1.26 +# define BOOST_IOSTREAMS_BASIC_ISTREAM(ch, tr) std::basic_istream< ch, tr >
1.27 +# define BOOST_IOSTREAMS_BASIC_OSTREAM(ch, tr) std::basic_ostream< ch, tr >
1.28 +# define BOOST_IOSTREAMS_BASIC_IOSTREAM(ch, tr) std::basic_iostream< ch, tr >
1.29 +#else
1.30 +# define BOOST_IOSTREAMS_BASIC_STREAMBUF(ch, tr) std::streambuf
1.31 +# define BOOST_IOSTREAMS_BASIC_ISTREAM(ch, tr) std::istream
1.32 +# define BOOST_IOSTREAMS_BASIC_OSTREAM(ch, tr) std::ostream
1.33 +# define BOOST_IOSTREAMS_BASIC_IOSTREAM(ch, tr) std::iostream
1.34 +#endif
1.35 +
1.36 +#endif // #ifndef BOOST_IOSTREAMS_DETAIL_IOSTREAM_HPP_INCLUDED