User`s guide
mwString& operator=(const mwString& str)
Purpose mwString assignment operator
C++
Syntax
#include "mclcppclass. h"
mwString str("This is a string");
mwString new_str = str; // new_str contains a copy of
// the data in str.
Arguments str
String to make a copy of.
Return
Value
A reference to the invoking mwString object.
Description Use this operator to copy the contents of one string into another.
C-11