libstdc++
iosfwd
Go to the documentation of this file.
1 // <iosfwd> Forward declarations -*- C++ -*-
2 
3 // Copyright (C) 1997-2014 Free Software Foundation, Inc.
4 //
5 // This file is part of the GNU ISO C++ Library. This library is free
6 // software; you can redistribute it and/or modify it under the
7 // terms of the GNU General Public License as published by the
8 // Free Software Foundation; either version 3, or (at your option)
9 // any later version.
10 
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 // GNU General Public License for more details.
15 
16 // Under Section 7 of GPL version 3, you are granted additional
17 // permissions described in the GCC Runtime Library Exception, version
18 // 3.1, as published by the Free Software Foundation.
19 
20 // You should have received a copy of the GNU General Public License and
21 // a copy of the GCC Runtime Library Exception along with this program;
22 // see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
23 // <http://www.gnu.org/licenses/>.
24 
25 /** @file include/iosfwd
26  * This is a Standard C++ Library header.
27  */
28 
29 //
30 // ISO C++ 14882: 27.2 Forward declarations
31 //
32 
33 #ifndef _GLIBCXX_IOSFWD
34 #define _GLIBCXX_IOSFWD 1
35 
36 #pragma GCC system_header
37 
38 #include <bits/c++config.h>
39 #include <bits/stringfwd.h> // For string forward declarations.
40 #include <bits/postypes.h>
41 
42 namespace std _GLIBCXX_VISIBILITY(default)
43 {
44 _GLIBCXX_BEGIN_NAMESPACE_VERSION
45 
46  /**
47  * @defgroup io I/O
48  *
49  * Nearly all of the I/O classes are parameterized on the type of
50  * characters they read and write. (The major exception is ios_base at
51  * the top of the hierarchy.) This is a change from pre-Standard
52  * streams, which were not templates.
53  *
54  * For ease of use and compatibility, all of the basic_* I/O-related
55  * classes are given typedef names for both of the builtin character
56  * widths (wide and narrow). The typedefs are the same as the
57  * pre-Standard names, for example:
58  *
59  * @code
60  * typedef basic_ifstream<char> ifstream;
61  * @endcode
62  *
63  * Because properly forward-declaring these classes can be difficult, you
64  * should not do it yourself. Instead, include the &lt;iosfwd&gt;
65  * header, which contains only declarations of all the I/O classes as
66  * well as the typedefs. Trying to forward-declare the typedefs
67  * themselves (e.g., <code>class ostream;</code>) is not valid ISO C++.
68  *
69  * For more specific declarations, see
70  * http://gcc.gnu.org/onlinedocs/libstdc++/manual/bk01pt11ch24.html
71  *
72  * @{
73  */
74  class ios_base;
75 
76  template<typename _CharT, typename _Traits = char_traits<_CharT> >
77  class basic_ios;
78 
79  template<typename _CharT, typename _Traits = char_traits<_CharT> >
81 
82  template<typename _CharT, typename _Traits = char_traits<_CharT> >
84 
85  template<typename _CharT, typename _Traits = char_traits<_CharT> >
87 
88  template<typename _CharT, typename _Traits = char_traits<_CharT> >
90 
91  template<typename _CharT, typename _Traits = char_traits<_CharT>,
92  typename _Alloc = allocator<_CharT> >
94 
95  template<typename _CharT, typename _Traits = char_traits<_CharT>,
96  typename _Alloc = allocator<_CharT> >
98 
99  template<typename _CharT, typename _Traits = char_traits<_CharT>,
100  typename _Alloc = allocator<_CharT> >
102 
103  template<typename _CharT, typename _Traits = char_traits<_CharT>,
104  typename _Alloc = allocator<_CharT> >
106 
107  template<typename _CharT, typename _Traits = char_traits<_CharT> >
108  class basic_filebuf;
109 
110  template<typename _CharT, typename _Traits = char_traits<_CharT> >
111  class basic_ifstream;
112 
113  template<typename _CharT, typename _Traits = char_traits<_CharT> >
114  class basic_ofstream;
115 
116  template<typename _CharT, typename _Traits = char_traits<_CharT> >
117  class basic_fstream;
118 
119  template<typename _CharT, typename _Traits = char_traits<_CharT> >
121 
122  template<typename _CharT, typename _Traits = char_traits<_CharT> >
124 
125 
126  /// Base class for @c char streams.
127  typedef basic_ios<char> ios;
128 
129  /// Base class for @c char buffers.
131 
132  /// Base class for @c char input streams.
134 
135  /// Base class for @c char output streams.
137 
138  /// Base class for @c char mixed input and output streams.
140 
141  /// Class for @c char memory buffers.
143 
144  /// Class for @c char input memory streams.
146 
147  /// Class for @c char output memory streams.
149 
150  /// Class for @c char mixed input and output memory streams.
152 
153  /// Class for @c char file buffers.
155 
156  /// Class for @c char input file streams.
158 
159  /// Class for @c char output file streams.
161 
162  /// Class for @c char mixed input and output file streams.
164 
165 #ifdef _GLIBCXX_USE_WCHAR_T
166  /// Base class for @c wchar_t streams.
168 
169  /// Base class for @c wchar_t buffers.
171 
172  /// Base class for @c wchar_t input streams.
174 
175  /// Base class for @c wchar_t output streams.
177 
178  /// Base class for @c wchar_t mixed input and output streams.
180 
181  /// Class for @c wchar_t memory buffers.
183 
184  /// Class for @c wchar_t input memory streams.
186 
187  /// Class for @c wchar_t output memory streams.
189 
190  /// Class for @c wchar_t mixed input and output memory streams.
192 
193  /// Class for @c wchar_t file buffers.
195 
196  /// Class for @c wchar_t input file streams.
198 
199  /// Class for @c wchar_t output file streams.
201 
202  /// Class for @c wchar_t mixed input and output file streams.
204 #endif
205  /** @} */
206 
207 _GLIBCXX_END_NAMESPACE_VERSION
208 } // namespace
209 
210 #endif /* _GLIBCXX_IOSFWD */
basic_stringstream< char > stringstream
Class for char mixed input and output memory streams.
Definition: iosfwd:151
basic_stringbuf< char > stringbuf
Class for char memory buffers.
Definition: iosfwd:142
Provides input iterator semantics for streambufs.
Definition: iosfwd:120
basic_istringstream< wchar_t > wistringstream
Class for wchar_t input memory streams.
Definition: iosfwd:185
basic_streambuf< wchar_t > wstreambuf
Base class for wchar_t buffers.
Definition: iosfwd:170
basic_istringstream< char > istringstream
Class for char input memory streams.
Definition: iosfwd:145
The actual work of input and output (for files).
Definition: fstream:72
basic_ofstream< char > ofstream
Class for char output file streams.
Definition: iosfwd:160
basic_istream< wchar_t > wistream
Base class for wchar_t input streams.
Definition: iosfwd:173
Template class basic_istream.
Definition: iosfwd:83
basic_ostream< wchar_t > wostream
Base class for wchar_t output streams.
Definition: iosfwd:176
basic_ofstream< wchar_t > wofstream
Class for wchar_t output file streams.
Definition: iosfwd:200
basic_ios< wchar_t > wios
Base class for wchar_t streams.
Definition: iosfwd:167
basic_ios< char > ios
Base class for char streams.
Definition: iosfwd:123
basic_streambuf< char > streambuf
Base class for char buffers.
Definition: iosfwd:130
basic_filebuf< char > filebuf
Class for char file buffers.
Definition: iosfwd:154
basic_ifstream< char > ifstream
Class for char input file streams.
Definition: iosfwd:157
basic_istream< char > istream
Base class for char input streams.
Definition: iosfwd:133
basic_ostringstream< wchar_t > wostringstream
Class for wchar_t output memory streams.
Definition: iosfwd:188
Controlling input for files.
Definition: fstream:430
basic_stringstream< wchar_t > wstringstream
Class for wchar_t mixed input and output memory streams.
Definition: iosfwd:191
basic_iostream< char > iostream
Base class for char mixed input and output streams.
Definition: iosfwd:139
Controlling output for files.
Definition: fstream:602
basic_filebuf< wchar_t > wfilebuf
Class for wchar_t file buffers.
Definition: iosfwd:194
Controlling input and output for std::string.
Definition: iosfwd:105
Template class basic_iostream.
Definition: iosfwd:89
Provides output iterator semantics for streambufs.
Definition: iosfwd:123
basic_fstream< char > fstream
Class for char mixed input and output file streams.
Definition: iosfwd:163
Controlling input and output for files.
Definition: fstream:779
basic_iostream< wchar_t > wiostream
Base class for wchar_t mixed input and output streams.
Definition: iosfwd:179
The actual work of input and output (interface).
Definition: iosfwd:80
basic_ostream< char > ostream
Base class for char output streams.
Definition: iosfwd:136
basic_fstream< wchar_t > wfstream
Class for wchar_t mixed input and output file streams.
Definition: iosfwd:203
The actual work of input and output (for std::string).
Definition: iosfwd:93
Controlling output for std::string.
Definition: iosfwd:101
basic_ostringstream< char > ostringstream
Class for char output memory streams.
Definition: iosfwd:148
Controlling input for std::string.
Definition: iosfwd:97
basic_ifstream< wchar_t > wifstream
Class for wchar_t input file streams.
Definition: iosfwd:197
Template class basic_ostream.
Definition: iosfwd:86
basic_stringbuf< wchar_t > wstringbuf
Class for wchar_t memory buffers.
Definition: iosfwd:182
Template class basic_ios, virtual base class for all stream classes.
Definition: iosfwd:77