User`s guide

bool operator==(const mwString& str) const
Purpose Test two mwStrings for equality
C++
Syntax
#include "mclcppclass. h"
mwString str("This is a string");
mwString str2("This is another string");
bool ret = (str == str 2);// ret should have value of false.
Arguments str
String to compare.
Return
Value
The result of the comparison.
Description Use this operator to test two strings for equality.
C-13