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
213  { // set boolalpha
214  _Iosbase.setf(ios_base::boolalpha);
215  return (_Iosbase);
216  }
fmtflags __CLR_OR_THIS_CALL setf(fmtflags _Newfmtflags)
Definition: xiosbase:387
static constexpr _Fmtflags boolalpha
Definition: xiosbase:73
ios_base& __CLRCALL_OR_CDECL dec ( ios_base _Iosbase)
inline
219  { // set basefield to dec
221  return (_Iosbase);
222  }
static constexpr _Fmtflags basefield
Definition: xiosbase:77
static constexpr _Fmtflags dec
Definition: xiosbase:64
fmtflags __CLR_OR_THIS_CALL setf(fmtflags _Newfmtflags)
Definition: xiosbase:387
ios_base& __CLRCALL_OR_CDECL defaultfloat ( ios_base _Iosbase)
inline
225  { // clear floatfield
226  _Iosbase.unsetf(ios_base::floatfield);
227  return (_Iosbase);
228  }
static constexpr _Fmtflags floatfield
Definition: xiosbase:79
void __CLR_OR_THIS_CALL unsetf(fmtflags _Mask)
Definition: xiosbase:403
ios_base& __CLRCALL_OR_CDECL fixed ( ios_base _Iosbase)
inline
231  { // set floatfield to fixed
233  return (_Iosbase);
234  }
fmtflags __CLR_OR_THIS_CALL setf(fmtflags _Newfmtflags)
Definition: xiosbase:387
static constexpr _Fmtflags floatfield
Definition: xiosbase:79
static constexpr _Fmtflags fixed
Definition: xiosbase:68
ios_base& __CLRCALL_OR_CDECL hex ( ios_base _Iosbase)
inline
237  { // set basefield to hex
239  return (_Iosbase);
240  }
static constexpr _Fmtflags hex
Definition: xiosbase:66
static constexpr _Fmtflags basefield
Definition: xiosbase:77
fmtflags __CLR_OR_THIS_CALL setf(fmtflags _Newfmtflags)
Definition: xiosbase:387
ios_base& __CLRCALL_OR_CDECL hexfloat ( ios_base _Iosbase)
inline
243  { // set floatfield to hexfloat
245  return (_Iosbase);
246  }
fmtflags __CLR_OR_THIS_CALL setf(fmtflags _Newfmtflags)
Definition: xiosbase:387
static constexpr _Fmtflags floatfield
Definition: xiosbase:79
static constexpr _Fmtflags hexfloat
Definition: xiosbase:70
ios_base& __CLRCALL_OR_CDECL internal ( ios_base _Iosbase)
inline
255  { // set adjustfield to internal
257  return (_Iosbase);
258  }
fmtflags __CLR_OR_THIS_CALL setf(fmtflags _Newfmtflags)
Definition: xiosbase:387
static constexpr _Fmtflags internal
Definition: xiosbase:63
static constexpr _Fmtflags adjustfield
Definition: xiosbase:75
ios_base& __CLRCALL_OR_CDECL left ( ios_base _Iosbase)
inline
261  { // set adjustfield to left
263  return (_Iosbase);
264  }
fmtflags __CLR_OR_THIS_CALL setf(fmtflags _Newfmtflags)
Definition: xiosbase:387
static constexpr _Fmtflags adjustfield
Definition: xiosbase:75
static constexpr _Fmtflags left
Definition: xiosbase:61
ios_base& __CLRCALL_OR_CDECL noboolalpha ( ios_base _Iosbase)
inline
267  { // clear boolalpha
268  _Iosbase.unsetf(ios_base::boolalpha);
269  return (_Iosbase);
270  }
static constexpr _Fmtflags boolalpha
Definition: xiosbase:73
void __CLR_OR_THIS_CALL unsetf(fmtflags _Mask)
Definition: xiosbase:403
ios_base& __CLRCALL_OR_CDECL noshowbase ( ios_base _Iosbase)
inline
273  { // clear showbase
274  _Iosbase.unsetf(ios_base::showbase);
275  return (_Iosbase);
276  }
static constexpr _Fmtflags showbase
Definition: xiosbase:58
void __CLR_OR_THIS_CALL unsetf(fmtflags _Mask)
Definition: xiosbase:403
ios_base& __CLRCALL_OR_CDECL noshowpoint ( ios_base _Iosbase)
inline
279  { // clear showpoint
280  _Iosbase.unsetf(ios_base::showpoint);
281  return (_Iosbase);
282  }
static constexpr _Fmtflags showpoint
Definition: xiosbase:59
void __CLR_OR_THIS_CALL unsetf(fmtflags _Mask)
Definition: xiosbase:403
ios_base& __CLRCALL_OR_CDECL noshowpos ( ios_base _Iosbase)
inline
285  { // clear showpos
286  _Iosbase.unsetf(ios_base::showpos);
287  return (_Iosbase);
288  }
static constexpr _Fmtflags showpos
Definition: xiosbase:60
void __CLR_OR_THIS_CALL unsetf(fmtflags _Mask)
Definition: xiosbase:403
ios_base& __CLRCALL_OR_CDECL noskipws ( ios_base _Iosbase)
inline
291  { // clear skipws
292  _Iosbase.unsetf(ios_base::skipws);
293  return (_Iosbase);
294  }
static constexpr _Fmtflags skipws
Definition: xiosbase:55
void __CLR_OR_THIS_CALL unsetf(fmtflags _Mask)
Definition: xiosbase:403
ios_base& __CLRCALL_OR_CDECL nounitbuf ( ios_base _Iosbase)
inline
297  { // clear unitbuf
298  _Iosbase.unsetf(ios_base::unitbuf);
299  return (_Iosbase);
300  }
static constexpr _Fmtflags unitbuf
Definition: xiosbase:56
void __CLR_OR_THIS_CALL unsetf(fmtflags _Mask)
Definition: xiosbase:403
ios_base& __CLRCALL_OR_CDECL nouppercase ( ios_base _Iosbase)
inline
303  { // clear uppercase
304  _Iosbase.unsetf(ios_base::uppercase);
305  return (_Iosbase);
306  }
static constexpr _Fmtflags uppercase
Definition: xiosbase:57
void __CLR_OR_THIS_CALL unsetf(fmtflags _Mask)
Definition: xiosbase:403
ios_base& __CLRCALL_OR_CDECL oct ( ios_base _Iosbase)
inline
309  { // set oct in basefield
311  return (_Iosbase);
312  }
static constexpr _Fmtflags basefield
Definition: xiosbase:77
static constexpr _Fmtflags oct
Definition: xiosbase:65
fmtflags __CLR_OR_THIS_CALL setf(fmtflags _Newfmtflags)
Definition: xiosbase:387
ios_base& __CLRCALL_OR_CDECL right ( ios_base _Iosbase)
inline
315  { // set right in adjustfield
317  return (_Iosbase);
318  }
fmtflags __CLR_OR_THIS_CALL setf(fmtflags _Newfmtflags)
Definition: xiosbase:387
static constexpr _Fmtflags right
Definition: xiosbase:62
static constexpr _Fmtflags adjustfield
Definition: xiosbase:75
ios_base& __CLRCALL_OR_CDECL scientific ( ios_base _Iosbase)
inline
321  { // set scientific in floatfield
323  return (_Iosbase);
324  }
static constexpr _Fmtflags scientific
Definition: xiosbase:67
fmtflags __CLR_OR_THIS_CALL setf(fmtflags _Newfmtflags)
Definition: xiosbase:387
static constexpr _Fmtflags floatfield
Definition: xiosbase:79
ios_base& __CLRCALL_OR_CDECL showbase ( ios_base _Iosbase)
inline
327  { // set showbase
328  _Iosbase.setf(ios_base::showbase);
329  return (_Iosbase);
330  }
fmtflags __CLR_OR_THIS_CALL setf(fmtflags _Newfmtflags)
Definition: xiosbase:387
static constexpr _Fmtflags showbase
Definition: xiosbase:58
ios_base& __CLRCALL_OR_CDECL showpoint ( ios_base _Iosbase)
inline
333  { // set showpoint
334  _Iosbase.setf(ios_base::showpoint);
335  return (_Iosbase);
336  }
static constexpr _Fmtflags showpoint
Definition: xiosbase:59
fmtflags __CLR_OR_THIS_CALL setf(fmtflags _Newfmtflags)
Definition: xiosbase:387
ios_base& __CLRCALL_OR_CDECL showpos ( ios_base _Iosbase)
inline
339  { // set showpos
340  _Iosbase.setf(ios_base::showpos);
341  return (_Iosbase);
342  }
static constexpr _Fmtflags showpos
Definition: xiosbase:60
fmtflags __CLR_OR_THIS_CALL setf(fmtflags _Newfmtflags)
Definition: xiosbase:387
ios_base& __CLRCALL_OR_CDECL skipws ( ios_base _Iosbase)
inline
345  { // set skipws
346  _Iosbase.setf(ios_base::skipws);
347  return (_Iosbase);
348  }
static constexpr _Fmtflags skipws
Definition: xiosbase:55
fmtflags __CLR_OR_THIS_CALL setf(fmtflags _Newfmtflags)
Definition: xiosbase:387
ios_base& __CLRCALL_OR_CDECL unitbuf ( ios_base _Iosbase)
inline
351  { // set unitbuf
352  _Iosbase.setf(ios_base::unitbuf);
353  return (_Iosbase);
354  }
static constexpr _Fmtflags unitbuf
Definition: xiosbase:56
fmtflags __CLR_OR_THIS_CALL setf(fmtflags _Newfmtflags)
Definition: xiosbase:387
ios_base& __CLRCALL_OR_CDECL uppercase ( ios_base _Iosbase)
inline
357  { // set uppercase
358  _Iosbase.setf(ios_base::uppercase);
359  return (_Iosbase);
360  }
static constexpr _Fmtflags uppercase
Definition: xiosbase:57
fmtflags __CLR_OR_THIS_CALL setf(fmtflags _Newfmtflags)
Definition: xiosbase:387