Classes | |
class | IlString |
Manages strings in single or multi-bytes. More... | |
Functions | |
IlString | operator+ (const IlString &string1, const IlString &string2) |
Concatenation operator. More... | |
IlString & | operator<< (IlString &string, const char *cstring) |
Append operator. More... | |
IlString & | operator<< (IlString &string1, const IlString &string2) |
Append operator. More... | |
std::ostream & | operator<< (std::ostream &ostr, const IlString &string) |
Writes an IlString to an output stream. More... | |
std::istream & | operator>> (std::istream &istr, IlString &string) |
Reads an IlString from an input stream. More... | |
Library: ilog
Declaration of the IlString
class and some utilities.
Concatenation operator.
This operator concatenates two IlString
objects into a new one.
Example:
std::ostream& operator<< | ( | std::ostream & | ostr, |
const IlString & | string | ||
) |
Writes an IlString
to an output stream.
ostr | The output stream to write to. |
string | The string that is written. |