author | sl |
Tue, 10 Jun 2014 14:32:02 +0200 | |
changeset 1 | 260cb5ec6c19 |
permissions | -rw-r--r-- |
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 // Forward declarations of templates defined in traits.hpp.
9 #ifndef BOOST_IOSTREAMS_IO_TRAITS_FWD_HPP_INCLUDED
10 #define BOOST_IOSTREAMS_IO_TRAITS_FWD_HPP_INCLUDED
12 #if defined(_MSC_VER) && (_MSC_VER >= 1020)
13 # pragma once
14 #endif
16 #include <iosfwd> // stream types, char_traits.
18 namespace boost { namespace iostreams {
20 template<typename T>
21 struct is_istream;
23 template<typename T>
24 struct is_ostream;
26 template<typename T>
27 struct is_iostream;
29 template<typename T>
30 struct is_streambuf;
32 template<typename T>
33 struct is_stringstream;
35 template<typename T>
36 struct is_stringbuf;
38 template<typename T>
39 struct is_std_io;
41 template<typename T>
42 struct char_type_of;
44 template<typename T>
45 struct category_of;
47 template<typename T>
48 struct int_type_of;
50 template<typename T>
51 struct mode_of;
53 template<typename T>
54 struct is_device;
56 template<typename T>
57 struct is_filter;
59 template<typename T>
60 struct is_direct;
62 namespace detail {
64 template<typename T>
65 struct is_linked;
67 } // End namespace detail.
69 } } // End namespaces iostreams, boost.
71 #endif // #ifndef BOOST_IOSTREAMS_IO_TRAITS_FWD_HPP_INCLUDED