1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/ossrv_pub/boost_apis/boost/iostreams/detail/dispatch.hpp Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,40 @@
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_DETAIL_DISPATCH_HPP_INCLUDED
1.11 +#define BOOST_IOSTREAMS_DETAIL_DISPATCH_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> // BOOST_DEDUCED_TYPENAME.
1.18 +#include <boost/iostreams/detail/select.hpp>
1.19 +#include <boost/iostreams/traits.hpp> // category_of.
1.20 +#include <boost/mpl/void.hpp>
1.21 +#include <boost/type_traits/is_convertible.hpp>
1.22 +
1.23 +namespace boost { namespace iostreams {namespace detail {
1.24 +
1.25 +template< typename T, typename Tag1, typename Tag2,
1.26 + typename Tag3 = mpl::void_, typename Tag4 = mpl::void_,
1.27 + typename Tag5 = mpl::void_, typename Tag6 = mpl::void_,
1.28 + typename Category =
1.29 + BOOST_DEDUCED_TYPENAME category_of<T>::type >
1.30 +struct dispatch
1.31 + : iostreams::select< // Disambiguation for Tru64.
1.32 + is_convertible<Category, Tag1>, Tag1,
1.33 + is_convertible<Category, Tag2>, Tag2,
1.34 + is_convertible<Category, Tag3>, Tag3,
1.35 + is_convertible<Category, Tag4>, Tag4,
1.36 + is_convertible<Category, Tag5>, Tag5,
1.37 + is_convertible<Category, Tag6>, Tag6
1.38 + >
1.39 + { };
1.40 +
1.41 +} } } // End namespaces detail, iostreams, boost.
1.42 +
1.43 +#endif // #ifndef BOOST_IOSTREAMS_DETAIL_DISPATCH_HPP_INCLUDED