-
Notifications
You must be signed in to change notification settings - Fork 0
/
iomanip.hpp
28 lines (24 loc) · 1.25 KB
/
iomanip.hpp
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
namespace std {
// types T1, T2, ... are unspecified implementation types
@T1@ resetiosflags(ios_base::fmtflags mask);
@T2@ setiosflags (ios_base::fmtflags mask);
@T3@ setbase(int base);
template<charT> @T4@ setfill(charT c);
@T5@ setprecision(int n);
@T6@ setw(int n);
template <class moneyT> @T7@ get_money(moneyT& mon, bool intl = false);
template <class moneyT> @T8@ put_money(const moneyT& mon, bool intl = false);
template <class charT> @T9@ get_time(struct tm* tmb, const charT* fmt);
template <class charT> @T10@ put_time(const struct tm* tmb, const charT* fmt);
template <class charT>
@T11@ quoted(const charT* s, charT delim = charT('"'), charT escape = charT('\\'));
template <class charT, class traits, class Allocator>
@T12@ quoted(const basic_string<charT, traits, Allocator>& s,
@\itcorr@ charT delim = charT('"'), charT escape = charT('\\'));
template <class charT, class traits, class Allocator>
@T13@ quoted(basic_string<charT, traits, Allocator>& s,
@\itcorr@ charT delim = charT('"'), charT escape = charT('\\'));
template <class charT, class traits>
@T14@ quoted(basic_string_view<charT, traits> s,
@\itcorr@ charT delim = charT('"'), charT escape = charT('\\'));
}