Chris@16: // (C) Copyright 2008 CodeRage, LLC (turkanis at coderage dot com) Chris@16: // (C) Copyright 2003-2007 Jonathan Turkanis Chris@16: // Distributed under the Boost Software License, Version 1.0. (See accompanying Chris@16: // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt.) Chris@16: Chris@16: // See http://www.boost.org/libs/iostreams for documentation. Chris@16: Chris@16: #ifndef BOOST_IOSTREAMS_DETAIL_IOSTREAM_HPP_INCLUDED Chris@16: #define BOOST_IOSTREAMS_DETAIL_IOSTREAM_HPP_INCLUDED Chris@16: Chris@16: #if defined(_MSC_VER) && (_MSC_VER >= 1020) Chris@16: # pragma once Chris@16: #endif Chris@16: Chris@16: #include Chris@16: #ifndef BOOST_IOSTREAMS_NO_STREAM_TEMPLATES Chris@16: # include Chris@16: # include Chris@16: #else Chris@16: # include Chris@16: #endif Chris@16: Chris@16: #ifndef BOOST_IOSTREAMS_NO_STREAM_TEMPLATES Chris@16: # define BOOST_IOSTREAMS_BASIC_ISTREAM(ch, tr) std::basic_istream< ch, tr > Chris@16: # define BOOST_IOSTREAMS_BASIC_OSTREAM(ch, tr) std::basic_ostream< ch, tr > Chris@16: # define BOOST_IOSTREAMS_BASIC_IOSTREAM(ch, tr) std::basic_iostream< ch, tr > Chris@16: #else Chris@16: # define BOOST_IOSTREAMS_BASIC_STREAMBUF(ch, tr) std::streambuf Chris@16: # define BOOST_IOSTREAMS_BASIC_ISTREAM(ch, tr) std::istream Chris@16: # define BOOST_IOSTREAMS_BASIC_OSTREAM(ch, tr) std::ostream Chris@16: # define BOOST_IOSTREAMS_BASIC_IOSTREAM(ch, tr) std::iostream Chris@16: #endif Chris@16: Chris@16: #endif // #ifndef BOOST_IOSTREAMS_DETAIL_IOSTREAM_HPP_INCLUDED