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_IMBUE_HPP_INCLUDED
8 #define BOOST_IOSTREAMS_IMBUE_HPP_INCLUDED
10 #if defined(_MSC_VER) && (_MSC_VER >= 1020)
14 #include <boost/config.hpp> // DEDUCED_TYPENAME, MSVC.
15 #include <boost/detail/workaround.hpp>
16 #include <boost/iostreams/detail/dispatch.hpp>
17 #include <boost/iostreams/detail/streambuf.hpp>
18 #include <boost/iostreams/detail/wrap_unwrap.hpp>
19 #include <boost/iostreams/operations_fwd.hpp>
20 #include <boost/mpl/if.hpp>
23 #include <boost/iostreams/detail/config/disable_warnings.hpp>
25 namespace boost { namespace iostreams {
29 // Implementation templates for simulated tag dispatch.
33 } // End namespace detail.
35 template<typename T, typename Locale>
36 void imbue(T& t, const Locale& loc)
37 { detail::imbue_impl<T>::imbue(detail::unwrap(t), loc); }
41 //------------------Definition of imbue_impl----------------------------------//
49 BOOST_DEDUCED_TYPENAME
51 T, streambuf_tag, localizable_tag, any_tag
58 struct imbue_impl<any_tag> {
59 template<typename T, typename Locale>
60 static void imbue(T&, const Locale&) { }
64 struct imbue_impl<streambuf_tag> {
65 template<typename T, typename Locale>
66 static void imbue(T& t, const Locale& loc) { t.pubimbue(loc); }
70 struct imbue_impl<localizable_tag> {
71 template<typename T, typename Locale>
72 static void imbue(T& t, const Locale& loc) { t.imbue(loc); }
75 } // End namespace detail.
77 } } // End namespaces iostreams, boost.
79 #include <boost/iostreams/detail/config/enable_warnings.hpp>
81 #endif // #ifndef BOOST_IOSTREAMS_IMBUE_HPP_INCLUDED