winIDEA SDK
|
This class writes data to string stream.
#include <IEmitter.h>
Public Member Functions | |
void | close () |
Closes the underlying stream. More... | |
CStringStream () | |
Creates object with empty string stream. | |
std::string | getString () |
Returns contents of this stream as a string. | |
void | write (const std::string &str) |
Writes string to output. More... | |
|
virtual |
Closes the underlying stream.
If this method is not called, not all data may be written to the output.
Implements isys::ICStream.
|
virtual |
Writes string to output.
Use this method to add custom data to output file. However, take care to keep the file format valid, for example if it is XML file, to use tags consistently.
Implements isys::ICStream.