Line | |
---|
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.)
|
---|
4 |
|
---|
5 | // See http://www.boost.org/libs/iostreams for documentation.
|
---|
6 |
|
---|
7 | // Forward declarations of templates defined in traits.hpp.
|
---|
8 |
|
---|
9 | #ifndef BOOST_IOSTREAMS_IO_TRAITS_FWD_HPP_INCLUDED
|
---|
10 | #define BOOST_IOSTREAMS_IO_TRAITS_FWD_HPP_INCLUDED
|
---|
11 |
|
---|
12 | #if defined(_MSC_VER) && (_MSC_VER >= 1020)
|
---|
13 | # pragma once
|
---|
14 | #endif
|
---|
15 |
|
---|
16 | #include <iosfwd> // stream types, char_traits.
|
---|
17 |
|
---|
18 | namespace boost { namespace iostreams {
|
---|
19 |
|
---|
20 | template<typename T>
|
---|
21 | struct is_istream;
|
---|
22 |
|
---|
23 | template<typename T>
|
---|
24 | struct is_ostream;
|
---|
25 |
|
---|
26 | template<typename T>
|
---|
27 | struct is_iostream;
|
---|
28 |
|
---|
29 | template<typename T>
|
---|
30 | struct is_streambuf;
|
---|
31 |
|
---|
32 | template<typename T>
|
---|
33 | struct is_stringstream;
|
---|
34 |
|
---|
35 | template<typename T>
|
---|
36 | struct is_stringbuf;
|
---|
37 |
|
---|
38 | template<typename T>
|
---|
39 | struct is_std_io;
|
---|
40 |
|
---|
41 | template<typename T>
|
---|
42 | struct char_type_of;
|
---|
43 |
|
---|
44 | template<typename T>
|
---|
45 | struct category_of;
|
---|
46 |
|
---|
47 | template<typename T>
|
---|
48 | struct int_type_of;
|
---|
49 |
|
---|
50 | template<typename T>
|
---|
51 | struct mode_of;
|
---|
52 |
|
---|
53 | template<typename T>
|
---|
54 | struct is_device;
|
---|
55 |
|
---|
56 | template<typename T>
|
---|
57 | struct is_filter;
|
---|
58 |
|
---|
59 | template<typename T>
|
---|
60 | struct is_direct;
|
---|
61 |
|
---|
62 | namespace detail {
|
---|
63 |
|
---|
64 | template<typename T>
|
---|
65 | struct is_linked;
|
---|
66 |
|
---|
67 | } // End namespace detail.
|
---|
68 |
|
---|
69 | } } // End namespaces iostreams, boost.
|
---|
70 |
|
---|
71 | #endif // #ifndef BOOST_IOSTREAMS_IO_TRAITS_FWD_HPP_INCLUDED
|
---|
Note: See
TracBrowser
for help on using the repository browser.