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_DETAIL_DISPATCH_HPP_INCLUDED
|
sl@0
|
8 |
#define BOOST_IOSTREAMS_DETAIL_DISPATCH_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> // BOOST_DEDUCED_TYPENAME.
|
sl@0
|
15 |
#include <boost/iostreams/detail/select.hpp>
|
sl@0
|
16 |
#include <boost/iostreams/traits.hpp> // category_of.
|
sl@0
|
17 |
#include <boost/mpl/void.hpp>
|
sl@0
|
18 |
#include <boost/type_traits/is_convertible.hpp>
|
sl@0
|
19 |
|
sl@0
|
20 |
namespace boost { namespace iostreams {namespace detail {
|
sl@0
|
21 |
|
sl@0
|
22 |
template< typename T, typename Tag1, typename Tag2,
|
sl@0
|
23 |
typename Tag3 = mpl::void_, typename Tag4 = mpl::void_,
|
sl@0
|
24 |
typename Tag5 = mpl::void_, typename Tag6 = mpl::void_,
|
sl@0
|
25 |
typename Category =
|
sl@0
|
26 |
BOOST_DEDUCED_TYPENAME category_of<T>::type >
|
sl@0
|
27 |
struct dispatch
|
sl@0
|
28 |
: iostreams::select< // Disambiguation for Tru64.
|
sl@0
|
29 |
is_convertible<Category, Tag1>, Tag1,
|
sl@0
|
30 |
is_convertible<Category, Tag2>, Tag2,
|
sl@0
|
31 |
is_convertible<Category, Tag3>, Tag3,
|
sl@0
|
32 |
is_convertible<Category, Tag4>, Tag4,
|
sl@0
|
33 |
is_convertible<Category, Tag5>, Tag5,
|
sl@0
|
34 |
is_convertible<Category, Tag6>, Tag6
|
sl@0
|
35 |
>
|
sl@0
|
36 |
{ };
|
sl@0
|
37 |
|
sl@0
|
38 |
} } } // End namespaces detail, iostreams, boost.
|
sl@0
|
39 |
|
sl@0
|
40 |
#endif // #ifndef BOOST_IOSTREAMS_DETAIL_DISPATCH_HPP_INCLUDED
|