First public contribution.
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_INPUT_SEQUENCE_HPP_INCLUDED
8 #define BOOST_IOSTREAMS_INPUT_SEQUENCE_HPP_INCLUDED
10 #if defined(_MSC_VER) && (_MSC_VER >= 1020)
14 #include <utility> // pair.
15 #include <boost/config.hpp> // DEDUCED_TYPENAME, MSVC.
16 #include <boost/detail/workaround.hpp>
17 #include <boost/iostreams/detail/wrap_unwrap.hpp>
18 #include <boost/iostreams/traits.hpp>
19 #include <boost/mpl/if.hpp>
22 #include <boost/iostreams/detail/config/disable_warnings.hpp>
24 namespace boost { namespace iostreams {
29 struct input_sequence_impl;
31 } // End namespace detail.
35 BOOST_DEDUCED_TYPENAME char_type_of<T>::type*,
36 BOOST_DEDUCED_TYPENAME char_type_of<T>::type*
39 { return detail::input_sequence_impl<T>::input_sequence(t); }
43 //------------------Definition of direct_impl-------------------------------//
46 struct input_sequence_impl
50 input_sequence_impl<direct_tag>
55 struct input_sequence_impl<direct_tag> {
58 BOOST_DEDUCED_TYPENAME char_type_of<U>::type*,
59 BOOST_DEDUCED_TYPENAME char_type_of<U>::type*
61 input_sequence(U& u) { return u.input_sequence(); }
64 } // End namespace detail.
66 } } // End namespaces iostreams, boost.
68 #include <boost/iostreams/detail/config/enable_warnings.hpp>
70 #endif // #ifndef BOOST_IOSTREAMS_INPUT_SEQUENCE_HPP_INCLUDED