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_INPUT_SEQUENCE_HPP_INCLUDED
|
sl@0
|
8 |
#define BOOST_IOSTREAMS_INPUT_SEQUENCE_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 <utility> // pair.
|
sl@0
|
15 |
#include <boost/config.hpp> // DEDUCED_TYPENAME, MSVC.
|
sl@0
|
16 |
#include <boost/detail/workaround.hpp>
|
sl@0
|
17 |
#include <boost/iostreams/detail/wrap_unwrap.hpp>
|
sl@0
|
18 |
#include <boost/iostreams/traits.hpp>
|
sl@0
|
19 |
#include <boost/mpl/if.hpp>
|
sl@0
|
20 |
|
sl@0
|
21 |
// Must come last.
|
sl@0
|
22 |
#include <boost/iostreams/detail/config/disable_warnings.hpp>
|
sl@0
|
23 |
|
sl@0
|
24 |
namespace boost { namespace iostreams {
|
sl@0
|
25 |
|
sl@0
|
26 |
namespace detail {
|
sl@0
|
27 |
|
sl@0
|
28 |
template<typename T>
|
sl@0
|
29 |
struct input_sequence_impl;
|
sl@0
|
30 |
|
sl@0
|
31 |
} // End namespace detail.
|
sl@0
|
32 |
|
sl@0
|
33 |
template<typename T>
|
sl@0
|
34 |
inline std::pair<
|
sl@0
|
35 |
BOOST_DEDUCED_TYPENAME char_type_of<T>::type*,
|
sl@0
|
36 |
BOOST_DEDUCED_TYPENAME char_type_of<T>::type*
|
sl@0
|
37 |
>
|
sl@0
|
38 |
input_sequence(T& t)
|
sl@0
|
39 |
{ return detail::input_sequence_impl<T>::input_sequence(t); }
|
sl@0
|
40 |
|
sl@0
|
41 |
namespace detail {
|
sl@0
|
42 |
|
sl@0
|
43 |
//------------------Definition of direct_impl-------------------------------//
|
sl@0
|
44 |
|
sl@0
|
45 |
template<typename T>
|
sl@0
|
46 |
struct input_sequence_impl
|
sl@0
|
47 |
: mpl::if_<
|
sl@0
|
48 |
detail::is_custom<T>,
|
sl@0
|
49 |
operations<T>,
|
sl@0
|
50 |
input_sequence_impl<direct_tag>
|
sl@0
|
51 |
>::type
|
sl@0
|
52 |
{ };
|
sl@0
|
53 |
|
sl@0
|
54 |
template<>
|
sl@0
|
55 |
struct input_sequence_impl<direct_tag> {
|
sl@0
|
56 |
template<typename U>
|
sl@0
|
57 |
static std::pair<
|
sl@0
|
58 |
BOOST_DEDUCED_TYPENAME char_type_of<U>::type*,
|
sl@0
|
59 |
BOOST_DEDUCED_TYPENAME char_type_of<U>::type*
|
sl@0
|
60 |
>
|
sl@0
|
61 |
input_sequence(U& u) { return u.input_sequence(); }
|
sl@0
|
62 |
};
|
sl@0
|
63 |
|
sl@0
|
64 |
} // End namespace detail.
|
sl@0
|
65 |
|
sl@0
|
66 |
} } // End namespaces iostreams, boost.
|
sl@0
|
67 |
|
sl@0
|
68 |
#include <boost/iostreams/detail/config/enable_warnings.hpp>
|
sl@0
|
69 |
|
sl@0
|
70 |
#endif // #ifndef BOOST_IOSTREAMS_INPUT_SEQUENCE_HPP_INCLUDED
|