SourcePro® 2023.1 |
SourcePro® API Reference Guide |
Handle class for all the wide character output stream implementation classes. More...
#include <rw/stream/RWWCharOutputStream.h>
Public Member Functions | |
RWWCharOutputStream (RWWCharOutputStreamImp *ptr) | |
RWWCharOutputStream (const RWWCharOutputStream &handle) | |
void | close () |
void | flush () |
bool | isBad () const |
bool | isFail () const |
bool | isGood () const |
RWWCharOutputStream & | operator<< (RWWCharOutputStream &(*pf)(RWWCharOutputStream &)) |
RWWCharOutputStream | operator<< (RWWCharOutputStream(*pf)(RWWCharOutputStream &)) |
RWWCharOutputStream & | operator<< (wchar_t wcharValue) |
RWWCharOutputStream & | operator= (const RWWCharOutputStream &handle) |
void | write (wchar_t wcharValue) |
void | write (const wchar_t *wcharArray, RWSize numWChars) |
Public Member Functions inherited from RWHandleBase | |
bool | isValid (void) const |
bool | operator!= (const RWHandleBase &second) const |
bool | operator< (const RWHandleBase &second) const |
bool | operator== (const RWHandleBase &second) const |
Related Functions | |
(Note that these are not member functions.) | |
RWWCharOutputStream & | rwEndl (RWWCharOutputStream &stream) |
RWWCharOutputStream & | rwEnds (RWWCharOutputStream &stream) |
RWWCharOutputStream & | rwFlush (RWWCharOutputStream &stream) |
RWWCharOutputStream | rwGuard (RWWCharOutputStream &stream) |
Additional Inherited Members | |
Protected Member Functions inherited from RWHandleBase | |
RWHandleBase (void) | |
RWHandleBase (RWStaticCtor) | |
RWHandleBase (RWBodyBase *body) | |
RWHandleBase (const RWHandleBase &second) | |
~RWHandleBase (void) | |
RWBodyBase & | body (void) const |
RWHandleBase & | operator= (const RWHandleBase &second) |
Handle class for all the wide character output stream implementation classes. Implements the handle idiom from the handle-body pattern.
|
inlineexplicit |
Constructor.
|
inline |
Copy constructor.
handle | A wide character stream handle used to initialize the newly created handle. |
|
inline |
Closes the stream.
|
inline |
Flushes the stream.
|
inline |
Returns true
to indicate a loss of integrity resulting from an output operation. Throws no exceptions.
|
inline |
Returns true
to indicate that an output operation failed to generate the desired data. Throws no exceptions.
|
inline |
Returns true
to indicate a stream in a valid state. Throws no exceptions.
|
inline |
Inserter executing a manipulator function.
pf | The manipulator's function pointer. |
|
inline |
Inserter executing a manipulator function.
pf | The manipulator's function pointer. |
|
inline |
Writes a single wide character to the stream.
wcharValue | The wide character to be written to the stream. |
|
inline |
Assignment operator. Throws no exceptions.
handle | A wide character stream handle used to initialize this handle. |
|
inline |
Writes a single wide character to the stream.
wcharValue | The wide character to be written to the stream. |
|
inline |
Writes an array of wide characters to the stream.
wcharArray | A pointer to the first element of the array. |
numWChars | The number of wide characters to be written to the stream. |
|
related |
Manipulator that writes an end-of-line control character to the stream.
stream | A wide character output stream. |
|
related |
Manipulator that writes an end-of-string character to the stream.
stream | A wide character output stream. |
|
related |
Manipulator that flushes a wide character output stream.
stream | The wide character stream to be flushed. |
|
related |
Manipulator that is used to guard a series of insertion operations.
stream | A wide character output stream. |
A rwGuard() manipulator creates a temporary guarded stream that locks the internal mutex of the preceding synchronized stream. In this way, any insertions following the manipulator within the statement will be atomic, that is, uninterrupted by any other threads. Note that if the preceding stream is not a synchronized stream, the rwGuard() manipulator has no effect.
Copyright © 2023 Rogue Wave Software, Inc., a Perforce company. All Rights Reserved. |