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_OPERATIONS_FWD_HPP_INCLUDED
8 #define BOOST_IOSTREAMS_OPERATIONS_FWD_HPP_INCLUDED
10 #if defined(_MSC_VER) && (_MSC_VER >= 1020)
14 #include <boost/mpl/not.hpp>
15 #include <boost/type_traits/is_base_and_derived.hpp>
17 namespace boost { namespace iostreams {
24 struct custom_tag { };
29 is_base_and_derived< custom_tag, operations<T> >
33 } // End namespace detail.
36 struct operations : detail::custom_tag { };
38 } } // End namespaces iostreams, boost.
40 #endif // #ifndef BOOST_IOSTREAMS_OPERATIONS_FWD_HPP_INCLUDED //--------------//