libstdc++
std::basic_ostream::sentry Class Reference

List of all members.

Public Member Functions


Detailed Description

Performs setup work for output streams.

Objects of this class are created before all of the standard inserters are run. It is responsible for exception-safe prefix and suffix operations.


Constructor & Destructor Documentation

std::basic_ostream::sentry::sentry ( basic_ostream< _CharT, _Traits > &  __os) [explicit]

The constructor performs preparatory work.

Parameters:
osThe output stream to guard.

If the stream state is good (os.good() is true), then if the stream is tied to another output stream, is.tie()->flush() is called to synchronize the output sequences.

If the stream state is still good, then the sentry state becomes true (okay).

Definition at line 49 of file ostream.tcc.

References std::basic_ostream::flush(), and std::ios_base::failbit.

std::basic_ostream::sentry::~sentry ( ) [inline]

Possibly flushes the stream.

If ios_base::unitbuf is set in os.flags(), and std::uncaught_exception() is true, the sentry destructor calls flush() on the output stream.

Definition at line 407 of file ostream.

References std::unitbuf(), std::uncaught_exception(), and std::ios_base::badbit.


Member Function Documentation

std::basic_ostream::sentry::operator bool ( ) const [inline, explicit]

Quick status checking.

Returns:
The sentry state.

For ease of use, sentries may be converted to booleans. The return value is that of the sentry state (true == okay).

Definition at line 428 of file ostream.


The documentation for this class was generated from the following files: