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_IMBUE_HPP_INCLUDED
|
sl@0
|
8 |
#define BOOST_IOSTREAMS_IMBUE_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> // DEDUCED_TYPENAME, MSVC.
|
sl@0
|
15 |
#include <boost/detail/workaround.hpp>
|
sl@0
|
16 |
#include <boost/iostreams/detail/dispatch.hpp>
|
sl@0
|
17 |
#include <boost/iostreams/detail/streambuf.hpp>
|
sl@0
|
18 |
#include <boost/iostreams/detail/wrap_unwrap.hpp>
|
sl@0
|
19 |
#include <boost/iostreams/operations_fwd.hpp>
|
sl@0
|
20 |
#include <boost/mpl/if.hpp>
|
sl@0
|
21 |
|
sl@0
|
22 |
// Must come last.
|
sl@0
|
23 |
#include <boost/iostreams/detail/config/disable_warnings.hpp>
|
sl@0
|
24 |
|
sl@0
|
25 |
namespace boost { namespace iostreams {
|
sl@0
|
26 |
|
sl@0
|
27 |
namespace detail {
|
sl@0
|
28 |
|
sl@0
|
29 |
// Implementation templates for simulated tag dispatch.
|
sl@0
|
30 |
template<typename T>
|
sl@0
|
31 |
struct imbue_impl;
|
sl@0
|
32 |
|
sl@0
|
33 |
} // End namespace detail.
|
sl@0
|
34 |
|
sl@0
|
35 |
template<typename T, typename Locale>
|
sl@0
|
36 |
void imbue(T& t, const Locale& loc)
|
sl@0
|
37 |
{ detail::imbue_impl<T>::imbue(detail::unwrap(t), loc); }
|
sl@0
|
38 |
|
sl@0
|
39 |
namespace detail {
|
sl@0
|
40 |
|
sl@0
|
41 |
//------------------Definition of imbue_impl----------------------------------//
|
sl@0
|
42 |
|
sl@0
|
43 |
template<typename T>
|
sl@0
|
44 |
struct imbue_impl
|
sl@0
|
45 |
: mpl::if_<
|
sl@0
|
46 |
is_custom<T>,
|
sl@0
|
47 |
operations<T>,
|
sl@0
|
48 |
imbue_impl<
|
sl@0
|
49 |
BOOST_DEDUCED_TYPENAME
|
sl@0
|
50 |
dispatch<
|
sl@0
|
51 |
T, streambuf_tag, localizable_tag, any_tag
|
sl@0
|
52 |
>::type
|
sl@0
|
53 |
>
|
sl@0
|
54 |
>::type
|
sl@0
|
55 |
{ };
|
sl@0
|
56 |
|
sl@0
|
57 |
template<>
|
sl@0
|
58 |
struct imbue_impl<any_tag> {
|
sl@0
|
59 |
template<typename T, typename Locale>
|
sl@0
|
60 |
static void imbue(T&, const Locale&) { }
|
sl@0
|
61 |
};
|
sl@0
|
62 |
|
sl@0
|
63 |
template<>
|
sl@0
|
64 |
struct imbue_impl<streambuf_tag> {
|
sl@0
|
65 |
template<typename T, typename Locale>
|
sl@0
|
66 |
static void imbue(T& t, const Locale& loc) { t.pubimbue(loc); }
|
sl@0
|
67 |
};
|
sl@0
|
68 |
|
sl@0
|
69 |
template<>
|
sl@0
|
70 |
struct imbue_impl<localizable_tag> {
|
sl@0
|
71 |
template<typename T, typename Locale>
|
sl@0
|
72 |
static void imbue(T& t, const Locale& loc) { t.imbue(loc); }
|
sl@0
|
73 |
};
|
sl@0
|
74 |
|
sl@0
|
75 |
} // End namespace detail.
|
sl@0
|
76 |
|
sl@0
|
77 |
} } // End namespaces iostreams, boost.
|
sl@0
|
78 |
|
sl@0
|
79 |
#include <boost/iostreams/detail/config/enable_warnings.hpp>
|
sl@0
|
80 |
|
sl@0
|
81 |
#endif // #ifndef BOOST_IOSTREAMS_IMBUE_HPP_INCLUDED
|