Update contrib.
1 // (C) Copyright Jonathan Turkanis 2003.
2 // Distributed under the Boost Software License, Version 1.0. (See accompanying
3 // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt.)
5 // See http://www.boost.org/libs/iostreams for documentation.
7 #ifndef BOOST_IOSTREAMS_DETAIL_IOS_HPP_INCLUDED
8 #define BOOST_IOSTREAMS_DETAIL_IOS_HPP_INCLUDED
10 #if defined(_MSC_VER) && (_MSC_VER >= 1020)
14 #include <boost/config.hpp> // BOOST_MSVC.
15 #include <boost/detail/workaround.hpp>
16 #include <boost/iostreams/detail/config/wide_streams.hpp>
17 #ifndef BOOST_IOSTREAMS_NO_STREAM_TEMPLATES
18 # if !BOOST_WORKAROUND(__MWERKS__, <= 0x3003)
29 namespace boost { namespace iostreams { namespace detail {
31 #ifndef BOOST_IOSTREAMS_NO_STREAM_TEMPLATES //--------------------------------//
32 # define BOOST_IOSTREAMS_BASIC_IOS(ch, tr) std::basic_ios< ch, tr >
33 # if !BOOST_WORKAROUND(__MWERKS__, <= 0x3003) && \
34 !BOOST_WORKAROUND(__BORLANDC__, < 0x600) && \
35 !BOOST_WORKAROUND(BOOST_MSVC, < 1300) \
38 #define BOOST_IOS std::ios
39 #define BOOST_IOSTREAMS_FAILURE std::ios::failure
43 #define BOOST_IOS std::ios_base
44 #define BOOST_IOSTREAMS_FAILURE std::ios_base::failure
47 #else // #ifndef BOOST_IOSTREAMS_NO_STREAM_TEMPLATES //-----------------------//
49 #define BOOST_IOS std::ios
50 #define BOOST_IOSTREAMS_BASIC_IOS(ch, tr) std::ios
51 #define BOOST_IOSTREAMS_FAILURE boost::iostreams::detail::failure
53 class failure : std::exception {
55 explicit failure(const std::string& what_arg) : what_(what_arg) { }
56 const char* what() const { return what_.c_str(); }
61 #endif // #ifndef BOOST_IOSTREAMS_NO_STREAM_TEMPLATES //----------------------//
63 } } } // End namespace failure, iostreams, boost.
65 #endif // #ifndef BOOST_IOSTREAMS_DETAIL_IOS_HPP_INCLUDED