forked from p12tic/cppreference-doc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathiosfwd
More file actions
94 lines (70 loc) · 3.63 KB
/
iosfwd
File metadata and controls
94 lines (70 loc) · 3.63 KB
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
/* Copyright (C) 2015 Povilas Kanapickas <povilas@radix.lt>
This file is part of cppreference-doc
This work is licensed under the Creative Commons Attribution-ShareAlike 3.0
Unported License. To view a copy of this license, visit
http://creativecommons.org/licenses/by-sa/3.0/ or send a letter to Creative
Commons, 444 Castro Street, Suite 900, Mountain View, California, 94041, USA.
Permission is granted to copy, distribute and/or modify this document
under the terms of the GNU Free Documentation License, Version 1.3 or
any later version published by the Free Software Foundation; with no
Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts.
*/
#ifndef CPPREFERENCE_IOSFWD_H
#define CPPREFERENCE_IOSFWD_H
#include <cwchar> // for mbstate_t
namespace std {
template<class CharT> struct char_traits;
template<class T> class allocator;
typedef int streamoff;
class ios_base;
template<class CharT, class Traits = std::char_traits<CharT>> class basic_ios;
template<class CharT, class Traits = std::char_traits<CharT>> class basic_streambuf;
template<class CharT, class Traits = std::char_traits<CharT>> class basic_istream;
template<class CharT, class Traits = std::char_traits<CharT>> class basic_ostream;
template<class CharT, class Traits = std::char_traits<CharT>> class basic_iostream;
template<class CharT, class Traits = std::char_traits<CharT>> class basic_filebuf;
template<class CharT, class Traits = std::char_traits<CharT>> class basic_ifstream;
template<class CharT, class Traits = std::char_traits<CharT>> class basic_ofstream;
template<class CharT, class Traits = std::char_traits<CharT>> class basic_fstream;
template<class CharT, class Traits = std::char_traits<CharT>, class Alloc = std::allocator<CharT>>
class basic_stringbuf;
template<class CharT, class Traits = std::char_traits<CharT>, class Alloc = std::allocator<CharT>>
class basic_istringstream;
template<class CharT, class Traits = std::char_traits<CharT>, class Alloc = std::allocator<CharT>>
class basic_ostringstream;
template<class CharT, class Traits = std::char_traits<CharT>, class Alloc = std::allocator<CharT>>
class basic_stringstream;
template<class CharT, class Traits = std::char_traits<CharT>> class istreambuf_iterator;
template<class CharT, class Traits = std::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_filebuf<char> filebuf;
typedef basic_ifstream<char> ifstream;
typedef basic_ofstream<char> ofstream;
typedef basic_fstream<char> fstream;
typedef basic_stringbuf<char> stringbuf;
typedef basic_istringstream<char> istringstream;
typedef basic_ostringstream<char> ostringstream;
typedef basic_stringstream<char> stringstream;
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_filebuf<wchar_t> wfilebuf;
typedef basic_ifstream<wchar_t> wifstream;
typedef basic_ofstream<wchar_t> wofstream;
typedef basic_fstream<wchar_t> wfstream;
typedef basic_stringbuf<wchar_t> wstringbuf;
typedef basic_istringstream<wchar_t> wistringstream;
typedef basic_ostringstream<wchar_t> wostringstream;
typedef basic_stringstream<wchar_t> wstringstream;
template<class State> class fpos;
// state type in below typedefs is actually impl-defined type char_traits<State>::state_type
typedef fpos<mbstate_t> streampos;
typedef fpos<mbstate_t> wstreampos;
} // namespace std
#endif // CPPREFERENCE_IOSFWD_H