Elm
2
ELM is a library providing generic data structures, OS-independent interface, plugins and XML.
|
#include <elm/io/StringOutput.h>
Additional Inherited Members | |
Public Member Functions inherited from StringBuffer | |
StringBuffer (int capacity=64, int increment=32) | |
String | toString () |
CString | toCString () |
String | copyString () |
int | length (void) const |
void | reset (void) |
io::OutStream & | stream (void) |
Public Member Functions inherited from Output | |
Output (void) | |
Output (OutStream &stream) | |
OutStream & | stream (void) const |
void | setStream (OutStream &stream) |
void | flush (void) |
void | print (bool value) |
void | print (char chr) |
void | print (double value) |
void | print (void *value) |
void | print (const char *str) |
void | print (const CString str) |
void | print (const String &str) |
void | print (const IntFormat &fmt) |
void | print (const FloatFormat &fmt) |
void | print (const StringFormat &fmt) |
void | format (CString fmt,...) |
void | format (CString fmt, VarArg &args) |
bool | supportsANSI () |
void | print (t::int32 value) |
void | print (t::uint32 value) |
void | print (t::int64 value) |
void | print (t::uint64 value) |
Output performed into a string. This class is just a subclass of StringBuffer.