ios.hpp 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. // (C) Copyright 2008 CodeRage, LLC (turkanis at coderage dot com)
  2. // (C) Copyright 2003-2007 Jonathan Turkanis
  3. // Distributed under the Boost Software License, Version 1.0. (See accompanying
  4. // 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.
  6. #ifndef BOOST_IOSTREAMS_DETAIL_IOS_HPP_INCLUDED
  7. #define BOOST_IOSTREAMS_DETAIL_IOS_HPP_INCLUDED
  8. #if defined(_MSC_VER) && (_MSC_VER >= 1020)
  9. # pragma once
  10. #endif
  11. #include <boost/config.hpp> // BOOST_MSVC.
  12. #include <boost/detail/workaround.hpp>
  13. #include <boost/iostreams/detail/config/wide_streams.hpp>
  14. #ifndef BOOST_IOSTREAMS_NO_STREAM_TEMPLATES
  15. # if !BOOST_WORKAROUND(__MWERKS__, <= 0x3003)
  16. # include <ios>
  17. # else
  18. # include <istream>
  19. # include <ostream>
  20. # endif
  21. #else
  22. # include <exception>
  23. # include <iosfwd>
  24. #endif
  25. namespace boost { namespace iostreams { namespace detail {
  26. #ifndef BOOST_IOSTREAMS_NO_STREAM_TEMPLATES //--------------------------------//
  27. # define BOOST_IOSTREAMS_BASIC_IOS(ch, tr) std::basic_ios< ch, tr >
  28. # if !BOOST_WORKAROUND(__MWERKS__, <= 0x3003) && \
  29. !BOOST_WORKAROUND(__BORLANDC__, < 0x600) && \
  30. !BOOST_WORKAROUND(BOOST_MSVC, < 1300) \
  31. /**/
  32. #define BOOST_IOS std::ios
  33. #define BOOST_IOSTREAMS_FAILURE std::ios::failure
  34. # else
  35. #define BOOST_IOS std::ios_base
  36. #define BOOST_IOSTREAMS_FAILURE std::ios_base::failure
  37. # endif
  38. #else // #ifndef BOOST_IOSTREAMS_NO_STREAM_TEMPLATES //-----------------------//
  39. #define BOOST_IOS std::ios
  40. #define BOOST_IOSTREAMS_BASIC_IOS(ch, tr) std::ios
  41. #define BOOST_IOSTREAMS_FAILURE boost::iostreams::detail::failure
  42. class failure : std::exception {
  43. public:
  44. explicit failure(const std::string& what_arg) : what_(what_arg) { }
  45. const char* what() const { return what_.c_str(); }
  46. private:
  47. std::string what_;
  48. };
  49. #endif // #ifndef BOOST_IOSTREAMS_NO_STREAM_TEMPLATES //----------------------//
  50. } } } // End namespace failure, iostreams, boost.
  51. #endif // #ifndef BOOST_IOSTREAMS_DETAIL_IOS_HPP_INCLUDED