From 0b7911bd7fe9a53fc58db32e282960328d616264 Mon Sep 17 00:00:00 2001 From: Jonathan Turkanis Date: Sun, 6 Feb 2005 21:51:07 +0000 Subject: [PATCH] initial commitment [SVN r27187] --- include/boost/iostreams/traits_fwd.hpp | 64 ++++++++++++++++++++++++++ 1 file changed, 64 insertions(+) create mode 100755 include/boost/iostreams/traits_fwd.hpp diff --git a/include/boost/iostreams/traits_fwd.hpp b/include/boost/iostreams/traits_fwd.hpp new file mode 100755 index 0000000..54687ff --- /dev/null +++ b/include/boost/iostreams/traits_fwd.hpp @@ -0,0 +1,64 @@ +// (C) Copyright Jonathan Turkanis 2003. +// Distributed under the Boost Software License, Version 1.0. (See accompanying +// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt.) + +// See http://www.boost.org/libs/iostreams for documentation. + +// Forward declarations of templates defined in traits.hpp. + +#ifndef BOOST_IOSTREAMS_IO_TRAITS_FWD_HPP_INCLUDED +#define BOOST_IOSTREAMS_IO_TRAITS_FWD_HPP_INCLUDED + +#if defined(_MSC_VER) && (_MSC_VER >= 1020) +# pragma once +#endif + +#include // stream types, char_traits. + +namespace boost { namespace iostreams { + +template +struct is_istream; + +template +struct is_ostream; + +template +struct is_iostream; + +template +struct is_streambuf; + +template +struct is_stringstream; + +template +struct is_stringbuf; + +template +struct is_std_io; + +template +struct io_char; + +template +struct io_category; + +template +struct io_int; + +template +struct io_mode; + +template +struct is_device; + +template +struct is_filter; + +template +struct is_direct; + +} } // End namespaces iostreams, boost. + +#endif // #ifndef BOOST_IOSTREAMS_IO_TRAITS_FWD_HPP_INCLUDED