aboutsummaryrefslogtreecommitdiff
path: root/arch/all/cpp/include/iosfwd
blob: 1350113f26fbe11e7d5246fe079e2704269ab3c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
/* ****************************************************************************
 * iosfwd -- C++ I/O library forward declarations.
 * Copyright (C) 2017 Thomas "Cakeisalie5" Touhey <thomas@touhey.fr>
 *
 * This file is part of the 'all/cpp' module,
 * in libcarrot, an experimental modular libc project.
 *
 * This file is free software: you can redistribute it and/or modify it under
 * the terms of the GNU Lesser General Public License as published by the Free
 * Software Foundation, either version 3 of the License, or (at your option)
 * any later version.
 *
 * This file is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Lesser Public
 * License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with this file.  If not, see <http://www.gnu.org/licenses/>.
 * ************************************************************************* */
#if __USE_CXX98 && !defined(_IOSFWD_HPP) && !defined(_IOSFWD_)
# define _IOSFWD_HPP 1
# define _IOSFWD_    1
# include <cdefs.h>
# include <stddef.h>
__BEGIN_NAMESPACE_STD

template <class _CharT>
	class char_traits;
template <>
	class char_traits<char>;
template <>
	class char_traits<wchar_t>;

template <class _T>
	class allocator;

template <class _CharT, class _Traits = char_traits<_CharT>>
	class basic_ios;
template <class _CharT, class _Traits = char_traits<_CharT>>
	class basic_streambuf;
template <class _CharT, class _Traits = char_traits<_CharT>>
	class basic_istream;
template <class _CharT, class _Traits = char_traits<_CharT>>
	class basic_ostream;
template <class _CharT, class _Traits = char_traits<_CharT>>
	class basic_iostream;

template <class _CharT, class _Traits = char_traits<_CharT>,
  class _Allocator = allocator<_CharT>>
	class basic_stringbuf;
template <class _CharT, class _Traits = char_traits<_CharT>,
  class _Allocator = allocator<_CharT>>
	class basic_istringstream;
template <class _CharT, class _Traits = char_traits<_CharT>,
  class _Allocator = allocator<_CharT>>
	class basic_ostringstream;
template <class _CharT, class _Traits = char_traits<_CharT>,
  class _Allocator = allocator<_CharT>>
	class basic_stringstream;

template <class _CharT, class _Traits = char_traits<_CharT>>
	class basic_filebuf;
template <class _CharT, class _Traits = char_traits<_CharT>>
	class basic_ifstream;
template <class _CharT, class _Traits = char_traits<_CharT>>
	class basic_ofstream;
template <class _CharT, class _Traits = char_traits<_CharT>>
	class basic_fstream;

template <class _CharT, class _Traits = char_traits<_CharT>>
	class istreambuf_iterator;
template <class _CharT, class _Traits = char_traits<_CharT>>
	class ostreambuf_iterator;

typedef basic_ios<char>     ios;
typedef basic_ios<wchar_t> wios;

typedef basic_streambuf<char>   streambuf;
typedef basic_istream<char>    istream;
typedef basic_ostream<char>    ostream;
typedef basic_iostream<char>  iostream;

typedef basic_stringbuf<char>      stringbuf;
typedef basic_istringstream<char> istringstream;
typedef basic_ostringstream<char> ostringstream;
typedef basic_stringstream<char>   stringstream;

typedef basic_filebuf<char>   filebuf;
typedef basic_ifstream<char> ifstream;
typedef basic_ofstream<char> ofstream;
typedef basic_fstream<char>   fstream;

typedef basic_streambuf<wchar_t>   wstreambuf;
typedef basic_istream<wchar_t>    wistream;
typedef basic_ostream<wchar_t>    wostream;
typedef basic_iostream<wchar_t>  wiostream;

typedef basic_stringbuf<wchar_t>      wstringbuf;
typedef basic_istringstream<wchar_t> wistringstream;
typedef basic_ostringstream<wchar_t> wostringstream;
typedef basic_stringstream<wchar_t>   wstringstream;

typedef basic_filebuf<wchar_t>   wfilebuf;
typedef basic_ifstream<wchar_t> wifstream;
typedef basic_ofstream<wchar_t> wofstream;
typedef basic_fstream<wchar_t>   wfstream;

template <class state> class fpos;
typedef fpos<char_traits<char>::state_type>     streampos;
typedef fpos<char_traits<wchar_t>::state_type> wstreampos;

__END_NAMESPACE_STD
#endif /* _IOSFWD_HPP, _IOSFWD_ */
#ifndef  _IOSFWD_HPP
# define _IOSFWD_HPP 1
#endif
#ifndef  _IOSFWD_
# define _IOSFWD_    1
#endif