sl@0: // (C) Copyright Jonathan Turkanis 2003. sl@0: // Distributed under the Boost Software License, Version 1.0. (See accompanying sl@0: // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt.) sl@0: sl@0: // See http://www.boost.org/libs/iostreams for documentation. sl@0: sl@0: // Forward declarations of templates defined in traits.hpp. sl@0: sl@0: #ifndef BOOST_IOSTREAMS_IO_TRAITS_FWD_HPP_INCLUDED sl@0: #define BOOST_IOSTREAMS_IO_TRAITS_FWD_HPP_INCLUDED sl@0: sl@0: #if defined(_MSC_VER) && (_MSC_VER >= 1020) sl@0: # pragma once sl@0: #endif sl@0: sl@0: #include // stream types, char_traits. sl@0: sl@0: namespace boost { namespace iostreams { sl@0: sl@0: template sl@0: struct is_istream; sl@0: sl@0: template sl@0: struct is_ostream; sl@0: sl@0: template sl@0: struct is_iostream; sl@0: sl@0: template sl@0: struct is_streambuf; sl@0: sl@0: template sl@0: struct is_stringstream; sl@0: sl@0: template sl@0: struct is_stringbuf; sl@0: sl@0: template sl@0: struct is_std_io; sl@0: sl@0: template sl@0: struct char_type_of; sl@0: sl@0: template sl@0: struct category_of; sl@0: sl@0: template sl@0: struct int_type_of; sl@0: sl@0: template sl@0: struct mode_of; sl@0: sl@0: template sl@0: struct is_device; sl@0: sl@0: template sl@0: struct is_filter; sl@0: sl@0: template sl@0: struct is_direct; sl@0: sl@0: namespace detail { sl@0: sl@0: template sl@0: struct is_linked; sl@0: sl@0: } // End namespace detail. sl@0: sl@0: } } // End namespaces iostreams, boost. sl@0: sl@0: #endif // #ifndef BOOST_IOSTREAMS_IO_TRAITS_FWD_HPP_INCLUDED