os/ossrv/ossrv_pub/boost_apis/boost/iostreams/detail/ios.hpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// (C) Copyright Jonathan Turkanis 2003.
sl@0
     2
// Distributed under the Boost Software License, Version 1.0. (See accompanying
sl@0
     3
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt.)
sl@0
     4
sl@0
     5
// See http://www.boost.org/libs/iostreams for documentation.
sl@0
     6
sl@0
     7
#ifndef BOOST_IOSTREAMS_DETAIL_IOS_HPP_INCLUDED
sl@0
     8
#define BOOST_IOSTREAMS_DETAIL_IOS_HPP_INCLUDED
sl@0
     9
sl@0
    10
#if defined(_MSC_VER) && (_MSC_VER >= 1020)
sl@0
    11
# pragma once
sl@0
    12
#endif              
sl@0
    13
                 
sl@0
    14
#include <boost/config.hpp> // BOOST_MSVC.
sl@0
    15
#include <boost/detail/workaround.hpp>
sl@0
    16
#include <boost/iostreams/detail/config/wide_streams.hpp>
sl@0
    17
#ifndef BOOST_IOSTREAMS_NO_STREAM_TEMPLATES
sl@0
    18
# if !BOOST_WORKAROUND(__MWERKS__, <= 0x3003)
sl@0
    19
#  include <ios>
sl@0
    20
# else
sl@0
    21
#  include <istream>
sl@0
    22
#  include <ostream>
sl@0
    23
# endif
sl@0
    24
#else 
sl@0
    25
# include <exception>
sl@0
    26
# include <iosfwd>
sl@0
    27
#endif 
sl@0
    28
sl@0
    29
namespace boost { namespace iostreams { namespace detail {
sl@0
    30
sl@0
    31
#ifndef BOOST_IOSTREAMS_NO_STREAM_TEMPLATES //--------------------------------//
sl@0
    32
# define BOOST_IOSTREAMS_BASIC_IOS(ch, tr)  std::basic_ios< ch, tr >
sl@0
    33
# if !BOOST_WORKAROUND(__MWERKS__, <= 0x3003) && \
sl@0
    34
     !BOOST_WORKAROUND(__BORLANDC__, < 0x600) && \
sl@0
    35
     !BOOST_WORKAROUND(BOOST_MSVC, < 1300) \
sl@0
    36
     /**/
sl@0
    37
sl@0
    38
#define BOOST_IOS                std::ios
sl@0
    39
#define BOOST_IOSTREAMS_FAILURE  std::ios::failure
sl@0
    40
sl@0
    41
# else
sl@0
    42
sl@0
    43
#define BOOST_IOS                std::ios_base
sl@0
    44
#define BOOST_IOSTREAMS_FAILURE  std::ios_base::failure
sl@0
    45
sl@0
    46
# endif
sl@0
    47
#else // #ifndef BOOST_IOSTREAMS_NO_STREAM_TEMPLATES //-----------------------//
sl@0
    48
sl@0
    49
#define BOOST_IOS                          std::ios
sl@0
    50
#define BOOST_IOSTREAMS_BASIC_IOS(ch, tr)  std::ios
sl@0
    51
#define BOOST_IOSTREAMS_FAILURE            boost::iostreams::detail::failure
sl@0
    52
sl@0
    53
class failure : std::exception {    
sl@0
    54
public:
sl@0
    55
    explicit failure(const std::string& what_arg) : what_(what_arg) { }
sl@0
    56
    const char* what() const { return what_.c_str(); }
sl@0
    57
private:
sl@0
    58
    std::string what_;
sl@0
    59
};
sl@0
    60
sl@0
    61
#endif // #ifndef BOOST_IOSTREAMS_NO_STREAM_TEMPLATES //----------------------//
sl@0
    62
sl@0
    63
} } } // End namespace failure, iostreams, boost.
sl@0
    64
sl@0
    65
#endif // #ifndef BOOST_IOSTREAMS_DETAIL_IOS_HPP_INCLUDED