sl@0: // (C) Copyright Jonathan Turkanis 2003. sl@0: // Distributed under the Boost Software License, Version 1.0. (See accompanying sl@0: // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt.) sl@0: sl@0: // See http://www.boost.org/libs/iostreams for documentation. sl@0: sl@0: #ifndef BOOST_IOSTREAMS_DETAIL_STREAMBUF_HPP_INCLUDED sl@0: #define BOOST_IOSTREAMS_DETAIL_STREAMBUF_HPP_INCLUDED sl@0: sl@0: #if defined(_MSC_VER) && (_MSC_VER >= 1020) sl@0: # pragma once sl@0: #endif sl@0: sl@0: #include sl@0: #ifndef BOOST_IOSTREAMS_NO_STREAM_TEMPLATES sl@0: # include sl@0: #else sl@0: # include sl@0: #endif sl@0: sl@0: #ifndef BOOST_IOSTREAMS_NO_STREAM_TEMPLATES sl@0: # define BOOST_IOSTREAMS_BASIC_STREAMBUF(ch, tr) std::basic_streambuf< ch, tr > sl@0: # define BOOST_IOSTREAMS_PUBSYNC pubsync sl@0: # define BOOST_IOSTREAMS_PUBSEEKOFF pubseekoff sl@0: # define BOOST_IOSTREAMS_PUBSEEKPOS pubseekpos sl@0: #else sl@0: # define BOOST_IOSTREAMS_BASIC_STREAMBUF(ch, tr) std::streambuf sl@0: # define BOOST_IOSTREAMS_PUBSYNC sync sl@0: # define BOOST_IOSTREAMS_PUBSEEKOFF seekoff sl@0: # define BOOST_IOSTREAMS_PUBSEEKPOS seekpos sl@0: #endif sl@0: sl@0: #endif // #ifndef BOOST_IOSTREAMS_DETAIL_STREAMBUF_HPP_INCLUDED