Classes | |
| class | IlString |
| Manages strings in single or multi-bytes. More... | |
Functions | |
| IlBoolean ILOG_EXPORTED | operator!= (const char *strLeft, const IlString &strRight) |
| Not equal operator. More... | |
| IlBoolean ILOG_EXPORTED | operator!= (const IlString &strLeft, const char *strRight) |
| Not equal operator. More... | |
| IlString ILOG_EXPORTED | operator+ (const char *strLeft, const IlString &strRight) |
| Concatenation operator. More... | |
| IlString | operator+ (const IlString &string1, const IlString &string2) |
| Concatenation operator. More... | |
| IlString ILOG_EXPORTED | operator+ (const IlString &strLeft, const char *strRight) |
| 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... | |
| IlBoolean ILOG_EXPORTED | operator== (const char *strLeft, const IlString &strRight) |
| Equality operator. More... | |
| IlBoolean ILOG_EXPORTED | operator== (const IlString &strLeft, const char *strRight) |
| Equality operator. 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.
Not equal operator.
| strLeft | The left char*. |
| strRight | The right IlString. |
IlTrue when the strings are not equal and IlFalse otherwise. Not equal operator.
| strLeft | The left IlString. |
| strRight | The right char*. |
IlTrue when the strings are not equal and IlFalse otherwise. Append operator.
This operator appends an IlString to another IlString.
Example:
| string1 | The source IlString where string2 is appended. |
| string2 | The string that is appended to string1. |
| 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. |
Equality operator.
| strLeft | The left char*. |
| strRight | The right IlString. |
IlTrue when the strings are equal and IlFalse otherwise. Equality operator.
| strLeft | The left IlString. |
| strRight | The right char*. |
IlTrue when the strings are equal and IlFalse otherwise.