iomanip File Reference

#include <bits/c++config.h>
#include <istream>
#include <functional>

Include dependency graph for iomanip:

This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Namespaces

namespace  std

Functions

Resetiosflags resetiosflags (ios_base::fmtflags __mask)
 Manipulator for setf.
Setiosflags setiosflags (ios_base::fmtflags __mask)
 Manipulator for setf.
Setbase setbase (int __base)
 Manipulator for setf.
template<typename CharT>
Setfill< CharT > setfill (CharT c)
 Manipulator for fill.
Setprecision setprecision (int n)
 Manipulator for precision.
Setw setw (int n)
 Manipulator for width.


Detailed Description

This is a Standard C++ Library header. You should #include this header in your programs, rather than any of the "st[dl]_*.h" implementation files.

Definition in file iomanip.


Function Documentation

Resetiosflags std::resetiosflags ios_base::fmtflags  __mask  )  [inline]
 

Manipulator for setf.

Parameters:
mask A format flags mask.
Sent to a stream object, this manipulator resets the specified flags, via stream.setf(0,mask).

Definition at line 64 of file iomanip.

Setbase std::setbase int  __base  )  [inline]
 

Manipulator for setf.

Parameters:
base A numeric base.
Sent to a stream object, this manipulator changes the ios_base::basefield flags to oct, dec, or hex when base is 8, 10, or 16, accordingly, and to 0 if base is any other value.

Definition at line 133 of file iomanip.

template<typename CharT>
Setfill<CharT> std::setfill CharT  c  )  [inline]
 

Manipulator for fill.

Parameters:
c The new fill character.
Sent to a stream object, this manipulator calls fill(c) for that object.

Definition at line 175 of file iomanip.

Setiosflags std::setiosflags ios_base::fmtflags  __mask  )  [inline]
 

Manipulator for setf.

Parameters:
mask A format flags mask.
Sent to a stream object, this manipulator sets the format flags to mask.

Definition at line 98 of file iomanip.

Setprecision std::setprecision int  n  )  [inline]
 

Manipulator for precision.

Parameters:
n The new precision.
Sent to a stream object, this manipulator calls precision(n) for that object.

Definition at line 209 of file iomanip.

Setw std::setw int  n  )  [inline]
 

Manipulator for width.

Parameters:
n The new width.
Sent to a stream object, this manipulator calls width(n) for that object.

Definition at line 243 of file iomanip.


Generated on Fri May 6 01:10:18 2005 for libstdc++-v3 Source by  doxygen 1.4.2