1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/ossrv_pub/boost_apis/boost/iostreams/imbue.hpp Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,81 @@
1.4 +// (C) Copyright Jonathan Turkanis 2003.
1.5 +// Distributed under the Boost Software License, Version 1.0. (See accompanying
1.6 +// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt.)
1.7 +
1.8 +// See http://www.boost.org/libs/iostreams for documentation.
1.9 +
1.10 +#ifndef BOOST_IOSTREAMS_IMBUE_HPP_INCLUDED
1.11 +#define BOOST_IOSTREAMS_IMBUE_HPP_INCLUDED
1.12 +
1.13 +#if defined(_MSC_VER) && (_MSC_VER >= 1020)
1.14 +# pragma once
1.15 +#endif
1.16 +
1.17 +#include <boost/config.hpp> // DEDUCED_TYPENAME, MSVC.
1.18 +#include <boost/detail/workaround.hpp>
1.19 +#include <boost/iostreams/detail/dispatch.hpp>
1.20 +#include <boost/iostreams/detail/streambuf.hpp>
1.21 +#include <boost/iostreams/detail/wrap_unwrap.hpp>
1.22 +#include <boost/iostreams/operations_fwd.hpp>
1.23 +#include <boost/mpl/if.hpp>
1.24 +
1.25 +// Must come last.
1.26 +#include <boost/iostreams/detail/config/disable_warnings.hpp>
1.27 +
1.28 +namespace boost { namespace iostreams {
1.29 +
1.30 +namespace detail {
1.31 +
1.32 +// Implementation templates for simulated tag dispatch.
1.33 +template<typename T>
1.34 +struct imbue_impl;
1.35 +
1.36 +} // End namespace detail.
1.37 +
1.38 +template<typename T, typename Locale>
1.39 +void imbue(T& t, const Locale& loc)
1.40 +{ detail::imbue_impl<T>::imbue(detail::unwrap(t), loc); }
1.41 +
1.42 +namespace detail {
1.43 +
1.44 +//------------------Definition of imbue_impl----------------------------------//
1.45 +
1.46 +template<typename T>
1.47 +struct imbue_impl
1.48 + : mpl::if_<
1.49 + is_custom<T>,
1.50 + operations<T>,
1.51 + imbue_impl<
1.52 + BOOST_DEDUCED_TYPENAME
1.53 + dispatch<
1.54 + T, streambuf_tag, localizable_tag, any_tag
1.55 + >::type
1.56 + >
1.57 + >::type
1.58 + { };
1.59 +
1.60 +template<>
1.61 +struct imbue_impl<any_tag> {
1.62 + template<typename T, typename Locale>
1.63 + static void imbue(T&, const Locale&) { }
1.64 +};
1.65 +
1.66 +template<>
1.67 +struct imbue_impl<streambuf_tag> {
1.68 + template<typename T, typename Locale>
1.69 + static void imbue(T& t, const Locale& loc) { t.pubimbue(loc); }
1.70 +};
1.71 +
1.72 +template<>
1.73 +struct imbue_impl<localizable_tag> {
1.74 + template<typename T, typename Locale>
1.75 + static void imbue(T& t, const Locale& loc) { t.imbue(loc); }
1.76 +};
1.77 +
1.78 +} // End namespace detail.
1.79 +
1.80 +} } // End namespaces iostreams, boost.
1.81 +
1.82 +#include <boost/iostreams/detail/config/enable_warnings.hpp>
1.83 +
1.84 +#endif // #ifndef BOOST_IOSTREAMS_IMBUE_HPP_INCLUDED