User`s guide

mwString(const mwString& str)
Purpose Copy constructor for mwString
C++
Syntax
#include "mclcppclass. h"
mwString str("This is a string");
mwString new_str(str); // new_str cont ain s a copy of the
// characters in str.
Arguments str
mwString
to be copied.
Return
Value
None
Description Use this constructor to create an mwString that is a copy of an existing
one. Constructs a new string and initializes its data with the supplied
mwString.
C-8