Enumerations
Enumerations take the following form:
 
enum RWSeverity {RWWARNING, RWDEFAULT, RWFATAL}
The following enumerations modify the behavior of member functions or constructors for the classes involved. The value in italic is the default.
RWCString::enum stripType
{leading, trailing, both}
// where to strip // characters
RWCString::enum caseCompare
{exact, ignoreCase}
// ignore case during // comparison
RWCString::enum scopeType
{one, all}
// replace how many // substrings
RWBTreeOnDisk::enum styleMode
{V6Style, V5Style}
// file format
RWBTreeOnDisk::enum createMode
{autoCreate, create}
//(reuse,make new) // btree in file
RWeostream::enum Endian
{LittleEndian, BigEndian, HostEndian}
// constructor // argument
RWLocale::enum CurrSymbol
{NONE, LOCAL, INTL}
// used in "asString" // methods.
RWWString::enum stripType
{leading,trailing,both}
// where to strip // characters
RWWString::enum caseCompare
{exact, ignoreCase}
// ignore case // during comparison
RWWString::enum scopeType
{one, all}
// replace how many // substrings