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_OPERATIONS_FWD_HPP_INCLUDED
|
sl@0
|
8 |
#define BOOST_IOSTREAMS_OPERATIONS_FWD_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/mpl/not.hpp>
|
sl@0
|
15 |
#include <boost/type_traits/is_base_and_derived.hpp>
|
sl@0
|
16 |
|
sl@0
|
17 |
namespace boost { namespace iostreams {
|
sl@0
|
18 |
|
sl@0
|
19 |
template<typename T>
|
sl@0
|
20 |
struct operations;
|
sl@0
|
21 |
|
sl@0
|
22 |
namespace detail {
|
sl@0
|
23 |
|
sl@0
|
24 |
struct custom_tag { };
|
sl@0
|
25 |
|
sl@0
|
26 |
template<typename T>
|
sl@0
|
27 |
struct is_custom
|
sl@0
|
28 |
: mpl::not_<
|
sl@0
|
29 |
is_base_and_derived< custom_tag, operations<T> >
|
sl@0
|
30 |
>
|
sl@0
|
31 |
{ };
|
sl@0
|
32 |
|
sl@0
|
33 |
} // End namespace detail.
|
sl@0
|
34 |
|
sl@0
|
35 |
template<typename T>
|
sl@0
|
36 |
struct operations : detail::custom_tag { };
|
sl@0
|
37 |
|
sl@0
|
38 |
} } // End namespaces iostreams, boost.
|
sl@0
|
39 |
|
sl@0
|
40 |
#endif // #ifndef BOOST_IOSTREAMS_OPERATIONS_FWD_HPP_INCLUDED //--------------//
|