STLdoc
STLdocumentation
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
Classes | Macros | Functions
ios File Reference
#include <xlocnum>

Classes

class  basic_ios< _Elem, _Traits >
 

Macros

#define _IOS_
 

Functions

ios_base &__CLRCALL_OR_CDECL boolalpha (ios_base &_Iosbase)
 
ios_base &__CLRCALL_OR_CDECL dec (ios_base &_Iosbase)
 
ios_base &__CLRCALL_OR_CDECL defaultfloat (ios_base &_Iosbase)
 
ios_base &__CLRCALL_OR_CDECL fixed (ios_base &_Iosbase)
 
ios_base &__CLRCALL_OR_CDECL hex (ios_base &_Iosbase)
 
ios_base &__CLRCALL_OR_CDECL hexfloat (ios_base &_Iosbase)
 
ios_base &__CLRCALL_OR_CDECL internal (ios_base &_Iosbase)
 
ios_base &__CLRCALL_OR_CDECL left (ios_base &_Iosbase)
 
ios_base &__CLRCALL_OR_CDECL noboolalpha (ios_base &_Iosbase)
 
ios_base &__CLRCALL_OR_CDECL noshowbase (ios_base &_Iosbase)
 
ios_base &__CLRCALL_OR_CDECL noshowpoint (ios_base &_Iosbase)
 
ios_base &__CLRCALL_OR_CDECL noshowpos (ios_base &_Iosbase)
 
ios_base &__CLRCALL_OR_CDECL noskipws (ios_base &_Iosbase)
 
ios_base &__CLRCALL_OR_CDECL nounitbuf (ios_base &_Iosbase)
 
ios_base &__CLRCALL_OR_CDECL nouppercase (ios_base &_Iosbase)
 
ios_base &__CLRCALL_OR_CDECL oct (ios_base &_Iosbase)
 
ios_base &__CLRCALL_OR_CDECL right (ios_base &_Iosbase)
 
ios_base &__CLRCALL_OR_CDECL scientific (ios_base &_Iosbase)
 
ios_base &__CLRCALL_OR_CDECL showbase (ios_base &_Iosbase)
 
ios_base &__CLRCALL_OR_CDECL showpoint (ios_base &_Iosbase)
 
ios_base &__CLRCALL_OR_CDECL showpos (ios_base &_Iosbase)
 
ios_base &__CLRCALL_OR_CDECL skipws (ios_base &_Iosbase)
 
ios_base &__CLRCALL_OR_CDECL unitbuf (ios_base &_Iosbase)
 
ios_base &__CLRCALL_OR_CDECL uppercase (ios_base &_Iosbase)
 

Macro Definition Documentation

#define _IOS_

Function Documentation

ios_base& __CLRCALL_OR_CDECL boolalpha ( ios_base _Iosbase)
inline
214  { // set boolalpha
215  _Iosbase.setf(ios_base::boolalpha);
216  return (_Iosbase);
217  }
fmtflags __CLR_OR_THIS_CALL setf(fmtflags _Newfmtflags)
Definition: xiosbase:388
static constexpr _Fmtflags boolalpha
Definition: xiosbase:74
ios_base& __CLRCALL_OR_CDECL dec ( ios_base _Iosbase)
inline
220  { // set basefield to dec
222  return (_Iosbase);
223  }
static constexpr _Fmtflags basefield
Definition: xiosbase:78
static constexpr _Fmtflags dec
Definition: xiosbase:65
fmtflags __CLR_OR_THIS_CALL setf(fmtflags _Newfmtflags)
Definition: xiosbase:388
ios_base& __CLRCALL_OR_CDECL defaultfloat ( ios_base _Iosbase)
inline
226  { // clear floatfield
227  _Iosbase.unsetf(ios_base::floatfield);
228  return (_Iosbase);
229  }
static constexpr _Fmtflags floatfield
Definition: xiosbase:80
void __CLR_OR_THIS_CALL unsetf(fmtflags _Mask)
Definition: xiosbase:404
ios_base& __CLRCALL_OR_CDECL fixed ( ios_base _Iosbase)
inline
232  { // set floatfield to fixed
234  return (_Iosbase);
235  }
fmtflags __CLR_OR_THIS_CALL setf(fmtflags _Newfmtflags)
Definition: xiosbase:388
static constexpr _Fmtflags floatfield
Definition: xiosbase:80
static constexpr _Fmtflags fixed
Definition: xiosbase:69
ios_base& __CLRCALL_OR_CDECL hex ( ios_base _Iosbase)
inline
238  { // set basefield to hex
240  return (_Iosbase);
241  }
static constexpr _Fmtflags hex
Definition: xiosbase:67
static constexpr _Fmtflags basefield
Definition: xiosbase:78
fmtflags __CLR_OR_THIS_CALL setf(fmtflags _Newfmtflags)
Definition: xiosbase:388
ios_base& __CLRCALL_OR_CDECL hexfloat ( ios_base _Iosbase)
inline
244  { // set floatfield to hexfloat
246  return (_Iosbase);
247  }
fmtflags __CLR_OR_THIS_CALL setf(fmtflags _Newfmtflags)
Definition: xiosbase:388
static constexpr _Fmtflags floatfield
Definition: xiosbase:80
static constexpr _Fmtflags hexfloat
Definition: xiosbase:71
ios_base& __CLRCALL_OR_CDECL internal ( ios_base _Iosbase)
inline
256  { // set adjustfield to internal
258  return (_Iosbase);
259  }
fmtflags __CLR_OR_THIS_CALL setf(fmtflags _Newfmtflags)
Definition: xiosbase:388
static constexpr _Fmtflags internal
Definition: xiosbase:64
static constexpr _Fmtflags adjustfield
Definition: xiosbase:76
ios_base& __CLRCALL_OR_CDECL left ( ios_base _Iosbase)
inline
262  { // set adjustfield to left
264  return (_Iosbase);
265  }
fmtflags __CLR_OR_THIS_CALL setf(fmtflags _Newfmtflags)
Definition: xiosbase:388
static constexpr _Fmtflags adjustfield
Definition: xiosbase:76
static constexpr _Fmtflags left
Definition: xiosbase:62
ios_base& __CLRCALL_OR_CDECL noboolalpha ( ios_base _Iosbase)
inline
268  { // clear boolalpha
269  _Iosbase.unsetf(ios_base::boolalpha);
270  return (_Iosbase);
271  }
static constexpr _Fmtflags boolalpha
Definition: xiosbase:74
void __CLR_OR_THIS_CALL unsetf(fmtflags _Mask)
Definition: xiosbase:404
ios_base& __CLRCALL_OR_CDECL noshowbase ( ios_base _Iosbase)
inline
274  { // clear showbase
275  _Iosbase.unsetf(ios_base::showbase);
276  return (_Iosbase);
277  }
static constexpr _Fmtflags showbase
Definition: xiosbase:59
void __CLR_OR_THIS_CALL unsetf(fmtflags _Mask)
Definition: xiosbase:404
ios_base& __CLRCALL_OR_CDECL noshowpoint ( ios_base _Iosbase)
inline
280  { // clear showpoint
281  _Iosbase.unsetf(ios_base::showpoint);
282  return (_Iosbase);
283  }
static constexpr _Fmtflags showpoint
Definition: xiosbase:60
void __CLR_OR_THIS_CALL unsetf(fmtflags _Mask)
Definition: xiosbase:404
ios_base& __CLRCALL_OR_CDECL noshowpos ( ios_base _Iosbase)
inline
286  { // clear showpos
287  _Iosbase.unsetf(ios_base::showpos);
288  return (_Iosbase);
289  }
static constexpr _Fmtflags showpos
Definition: xiosbase:61
void __CLR_OR_THIS_CALL unsetf(fmtflags _Mask)
Definition: xiosbase:404
ios_base& __CLRCALL_OR_CDECL noskipws ( ios_base _Iosbase)
inline
292  { // clear skipws
293  _Iosbase.unsetf(ios_base::skipws);
294  return (_Iosbase);
295  }
static constexpr _Fmtflags skipws
Definition: xiosbase:56
void __CLR_OR_THIS_CALL unsetf(fmtflags _Mask)
Definition: xiosbase:404
ios_base& __CLRCALL_OR_CDECL nounitbuf ( ios_base _Iosbase)
inline
298  { // clear unitbuf
299  _Iosbase.unsetf(ios_base::unitbuf);
300  return (_Iosbase);
301  }
static constexpr _Fmtflags unitbuf
Definition: xiosbase:57
void __CLR_OR_THIS_CALL unsetf(fmtflags _Mask)
Definition: xiosbase:404
ios_base& __CLRCALL_OR_CDECL nouppercase ( ios_base _Iosbase)
inline
304  { // clear uppercase
305  _Iosbase.unsetf(ios_base::uppercase);
306  return (_Iosbase);
307  }
static constexpr _Fmtflags uppercase
Definition: xiosbase:58
void __CLR_OR_THIS_CALL unsetf(fmtflags _Mask)
Definition: xiosbase:404
ios_base& __CLRCALL_OR_CDECL oct ( ios_base _Iosbase)
inline
310  { // set oct in basefield
312  return (_Iosbase);
313  }
static constexpr _Fmtflags basefield
Definition: xiosbase:78
static constexpr _Fmtflags oct
Definition: xiosbase:66
fmtflags __CLR_OR_THIS_CALL setf(fmtflags _Newfmtflags)
Definition: xiosbase:388
ios_base& __CLRCALL_OR_CDECL right ( ios_base _Iosbase)
inline
316  { // set right in adjustfield
318  return (_Iosbase);
319  }
fmtflags __CLR_OR_THIS_CALL setf(fmtflags _Newfmtflags)
Definition: xiosbase:388
static constexpr _Fmtflags right
Definition: xiosbase:63
static constexpr _Fmtflags adjustfield
Definition: xiosbase:76
ios_base& __CLRCALL_OR_CDECL scientific ( ios_base _Iosbase)
inline
322  { // set scientific in floatfield
324  return (_Iosbase);
325  }
static constexpr _Fmtflags scientific
Definition: xiosbase:68
fmtflags __CLR_OR_THIS_CALL setf(fmtflags _Newfmtflags)
Definition: xiosbase:388
static constexpr _Fmtflags floatfield
Definition: xiosbase:80
ios_base& __CLRCALL_OR_CDECL showbase ( ios_base _Iosbase)
inline
328  { // set showbase
329  _Iosbase.setf(ios_base::showbase);
330  return (_Iosbase);
331  }
fmtflags __CLR_OR_THIS_CALL setf(fmtflags _Newfmtflags)
Definition: xiosbase:388
static constexpr _Fmtflags showbase
Definition: xiosbase:59
ios_base& __CLRCALL_OR_CDECL showpoint ( ios_base _Iosbase)
inline
334  { // set showpoint
335  _Iosbase.setf(ios_base::showpoint);
336  return (_Iosbase);
337  }
static constexpr _Fmtflags showpoint
Definition: xiosbase:60
fmtflags __CLR_OR_THIS_CALL setf(fmtflags _Newfmtflags)
Definition: xiosbase:388
ios_base& __CLRCALL_OR_CDECL showpos ( ios_base _Iosbase)
inline
340  { // set showpos
341  _Iosbase.setf(ios_base::showpos);
342  return (_Iosbase);
343  }
static constexpr _Fmtflags showpos
Definition: xiosbase:61
fmtflags __CLR_OR_THIS_CALL setf(fmtflags _Newfmtflags)
Definition: xiosbase:388
ios_base& __CLRCALL_OR_CDECL skipws ( ios_base _Iosbase)
inline
346  { // set skipws
347  _Iosbase.setf(ios_base::skipws);
348  return (_Iosbase);
349  }
static constexpr _Fmtflags skipws
Definition: xiosbase:56
fmtflags __CLR_OR_THIS_CALL setf(fmtflags _Newfmtflags)
Definition: xiosbase:388
ios_base& __CLRCALL_OR_CDECL unitbuf ( ios_base _Iosbase)
inline
352  { // set unitbuf
353  _Iosbase.setf(ios_base::unitbuf);
354  return (_Iosbase);
355  }
static constexpr _Fmtflags unitbuf
Definition: xiosbase:57
fmtflags __CLR_OR_THIS_CALL setf(fmtflags _Newfmtflags)
Definition: xiosbase:388
ios_base& __CLRCALL_OR_CDECL uppercase ( ios_base _Iosbase)
inline
358  { // set uppercase
359  _Iosbase.setf(ios_base::uppercase);
360  return (_Iosbase);
361  }
static constexpr _Fmtflags uppercase
Definition: xiosbase:58
fmtflags __CLR_OR_THIS_CALL setf(fmtflags _Newfmtflags)
Definition: xiosbase:388