Tools.h++ Class Reference

Table Of Contents
RWFile&
operator<<(RWFile&, const RWCString& str);
Saves string str to a virtual stream or RWFile, respectively.
RWvistream&
operator>>(RWvistream&, RWCString& str);
RWFile&
operator>>(RWFile&, RWCString& str);
Restores a string into str from a virtual stream or RWFile, respectively, replacing the
previous contents of str.
Related Global Functions
RWCString
strXForm(const RWCString&);
Returns the result of applying ::strxfrm() to the argument string, to allow quicker collation
than RWCString::collate(). Provided only on platforms that provide ::strxfrm(). This
function is incompatible with strings with embedded nulls.
RWCString
toLower(const RWCString& str);
Returns a version of str where all upper-case characters have been replaced with
lower-case characters. Uses the standard C library function tolower(). This function is
incompatible with MBCS strings.
RWCString
toUpper(const RWCString& str);
Returns a version of str where all lower-case characters have been replaced with
upper-case characters. Uses the standard C library function toupper(). This function is
incompatible with MBCS strings.