User`s guide
mwString& operator=(const char* s tr)
Purpose mwString assignment operator
C++
Syntax
#include "mclcppclass. h"
const char* pstr = "This is a str ing" ;
mwString str = pstr; // str contains copy of data in pstr.
Arguments str
char
buffer to make copy of.
Return
Value
A reference to the invoking mwString object.
Description Use this operator to copy the contents of a NULL-terminated buffer
into an
mwString.
C-12