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

Classes

class  basic_ios< _Elem, _Traits >
 

Namespaces

 tr1
 

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
210  { // set boolalpha
211  _Iosbase.setf(ios_base::boolalpha);
212  return (_Iosbase);
213  }
fmtflags __CLR_OR_THIS_CALL setf(fmtflags _Newfmtflags)
Definition: xiosbase:377
static const _Fmtflags boolalpha
Definition: xiosbase:74
ios_base& __CLRCALL_OR_CDECL dec ( ios_base _Iosbase)
inline
216  { // set basefield to dec
218  return (_Iosbase);
219  }
static const _Fmtflags basefield
Definition: xiosbase:78
static const _Fmtflags dec
Definition: xiosbase:65
fmtflags __CLR_OR_THIS_CALL setf(fmtflags _Newfmtflags)
Definition: xiosbase:377
ios_base& __CLRCALL_OR_CDECL defaultfloat ( ios_base _Iosbase)
inline
222  { // clear floatfield
223  _Iosbase.unsetf(ios_base::floatfield);
224  return (_Iosbase);
225  }
static const _Fmtflags floatfield
Definition: xiosbase:80
void __CLR_OR_THIS_CALL unsetf(fmtflags _Mask)
Definition: xiosbase:393
ios_base& __CLRCALL_OR_CDECL fixed ( ios_base _Iosbase)
inline
228  { // set floatfield to fixed
230  return (_Iosbase);
231  }
fmtflags __CLR_OR_THIS_CALL setf(fmtflags _Newfmtflags)
Definition: xiosbase:377
static const _Fmtflags floatfield
Definition: xiosbase:80
static const _Fmtflags fixed
Definition: xiosbase:69
ios_base& __CLRCALL_OR_CDECL hex ( ios_base _Iosbase)
inline
234  { // set basefield to hex
236  return (_Iosbase);
237  }
static const _Fmtflags hex
Definition: xiosbase:67
static const _Fmtflags basefield
Definition: xiosbase:78
fmtflags __CLR_OR_THIS_CALL setf(fmtflags _Newfmtflags)
Definition: xiosbase:377
ios_base& __CLRCALL_OR_CDECL hexfloat ( ios_base _Iosbase)
inline
240  { // set floatfield to hexfloat
242  return (_Iosbase);
243  }
fmtflags __CLR_OR_THIS_CALL setf(fmtflags _Newfmtflags)
Definition: xiosbase:377
static const _Fmtflags floatfield
Definition: xiosbase:80
static const _Fmtflags hexfloat
Definition: xiosbase:71
ios_base& __CLRCALL_OR_CDECL internal ( ios_base _Iosbase)
inline
250  { // set adjustfield to internal
252  return (_Iosbase);
253  }
fmtflags __CLR_OR_THIS_CALL setf(fmtflags _Newfmtflags)
Definition: xiosbase:377
static const _Fmtflags internal
Definition: xiosbase:64
static const _Fmtflags adjustfield
Definition: xiosbase:76
ios_base& __CLRCALL_OR_CDECL left ( ios_base _Iosbase)
inline
256  { // set adjustfield to left
258  return (_Iosbase);
259  }
fmtflags __CLR_OR_THIS_CALL setf(fmtflags _Newfmtflags)
Definition: xiosbase:377
static const _Fmtflags adjustfield
Definition: xiosbase:76
static const _Fmtflags left
Definition: xiosbase:62
ios_base& __CLRCALL_OR_CDECL noboolalpha ( ios_base _Iosbase)
inline
262  { // clear boolalpha
263  _Iosbase.unsetf(ios_base::boolalpha);
264  return (_Iosbase);
265  }
static const _Fmtflags boolalpha
Definition: xiosbase:74
void __CLR_OR_THIS_CALL unsetf(fmtflags _Mask)
Definition: xiosbase:393
ios_base& __CLRCALL_OR_CDECL noshowbase ( ios_base _Iosbase)
inline
268  { // clear showbase
269  _Iosbase.unsetf(ios_base::showbase);
270  return (_Iosbase);
271  }
static const _Fmtflags showbase
Definition: xiosbase:59
void __CLR_OR_THIS_CALL unsetf(fmtflags _Mask)
Definition: xiosbase:393
ios_base& __CLRCALL_OR_CDECL noshowpoint ( ios_base _Iosbase)
inline
274  { // clear showpoint
275  _Iosbase.unsetf(ios_base::showpoint);
276  return (_Iosbase);
277  }
static const _Fmtflags showpoint
Definition: xiosbase:60
void __CLR_OR_THIS_CALL unsetf(fmtflags _Mask)
Definition: xiosbase:393
ios_base& __CLRCALL_OR_CDECL noshowpos ( ios_base _Iosbase)
inline
280  { // clear showpos
281  _Iosbase.unsetf(ios_base::showpos);
282  return (_Iosbase);
283  }
static const _Fmtflags showpos
Definition: xiosbase:61
void __CLR_OR_THIS_CALL unsetf(fmtflags _Mask)
Definition: xiosbase:393
ios_base& __CLRCALL_OR_CDECL noskipws ( ios_base _Iosbase)
inline
286  { // clear skipws
287  _Iosbase.unsetf(ios_base::skipws);
288  return (_Iosbase);
289  }
static const _Fmtflags skipws
Definition: xiosbase:56
void __CLR_OR_THIS_CALL unsetf(fmtflags _Mask)
Definition: xiosbase:393
ios_base& __CLRCALL_OR_CDECL nounitbuf ( ios_base _Iosbase)
inline
292  { // clear unitbuf
293  _Iosbase.unsetf(ios_base::unitbuf);
294  return (_Iosbase);
295  }
static const _Fmtflags unitbuf
Definition: xiosbase:57
void __CLR_OR_THIS_CALL unsetf(fmtflags _Mask)
Definition: xiosbase:393
ios_base& __CLRCALL_OR_CDECL nouppercase ( ios_base _Iosbase)
inline
298  { // clear uppercase
299  _Iosbase.unsetf(ios_base::uppercase);
300  return (_Iosbase);
301  }
static const _Fmtflags uppercase
Definition: xiosbase:58
void __CLR_OR_THIS_CALL unsetf(fmtflags _Mask)
Definition: xiosbase:393
ios_base& __CLRCALL_OR_CDECL oct ( ios_base _Iosbase)
inline
304  { // set oct in basefield
306  return (_Iosbase);
307  }
static const _Fmtflags basefield
Definition: xiosbase:78
static const _Fmtflags oct
Definition: xiosbase:66
fmtflags __CLR_OR_THIS_CALL setf(fmtflags _Newfmtflags)
Definition: xiosbase:377
ios_base& __CLRCALL_OR_CDECL right ( ios_base _Iosbase)
inline
310  { // set right in adjustfield
312  return (_Iosbase);
313  }
fmtflags __CLR_OR_THIS_CALL setf(fmtflags _Newfmtflags)
Definition: xiosbase:377
static const _Fmtflags right
Definition: xiosbase:63
static const _Fmtflags adjustfield
Definition: xiosbase:76
ios_base& __CLRCALL_OR_CDECL scientific ( ios_base _Iosbase)
inline
316  { // set scientific in floatfield
318  return (_Iosbase);
319  }
static const _Fmtflags scientific
Definition: xiosbase:68
fmtflags __CLR_OR_THIS_CALL setf(fmtflags _Newfmtflags)
Definition: xiosbase:377
static const _Fmtflags floatfield
Definition: xiosbase:80
ios_base& __CLRCALL_OR_CDECL showbase ( ios_base _Iosbase)
inline
322  { // set showbase
323  _Iosbase.setf(ios_base::showbase);
324  return (_Iosbase);
325  }
fmtflags __CLR_OR_THIS_CALL setf(fmtflags _Newfmtflags)
Definition: xiosbase:377
static const _Fmtflags showbase
Definition: xiosbase:59
ios_base& __CLRCALL_OR_CDECL showpoint ( ios_base _Iosbase)
inline
328  { // set showpoint
329  _Iosbase.setf(ios_base::showpoint);
330  return (_Iosbase);
331  }
static const _Fmtflags showpoint
Definition: xiosbase:60
fmtflags __CLR_OR_THIS_CALL setf(fmtflags _Newfmtflags)
Definition: xiosbase:377
ios_base& __CLRCALL_OR_CDECL showpos ( ios_base _Iosbase)
inline
334  { // set showpos
335  _Iosbase.setf(ios_base::showpos);
336  return (_Iosbase);
337  }
static const _Fmtflags showpos
Definition: xiosbase:61
fmtflags __CLR_OR_THIS_CALL setf(fmtflags _Newfmtflags)
Definition: xiosbase:377
ios_base& __CLRCALL_OR_CDECL skipws ( ios_base _Iosbase)
inline
340  { // set skipws
341  _Iosbase.setf(ios_base::skipws);
342  return (_Iosbase);
343  }
static const _Fmtflags skipws
Definition: xiosbase:56
fmtflags __CLR_OR_THIS_CALL setf(fmtflags _Newfmtflags)
Definition: xiosbase:377
ios_base& __CLRCALL_OR_CDECL unitbuf ( ios_base _Iosbase)
inline
346  { // set unitbuf
347  _Iosbase.setf(ios_base::unitbuf);
348  return (_Iosbase);
349  }
static const _Fmtflags unitbuf
Definition: xiosbase:57
fmtflags __CLR_OR_THIS_CALL setf(fmtflags _Newfmtflags)
Definition: xiosbase:377
ios_base& __CLRCALL_OR_CDECL uppercase ( ios_base _Iosbase)
inline
352  { // set uppercase
353  _Iosbase.setf(ios_base::uppercase);
354  return (_Iosbase);
355  }
static const _Fmtflags uppercase
Definition: xiosbase:58
fmtflags __CLR_OR_THIS_CALL setf(fmtflags _Newfmtflags)
Definition: xiosbase:377