SimpleString::SimpleString(SimpleString& str) { if (this != &str) { Assign(str.c_str()); } }
bool SimpleString::operator==(const SimpleString &str) const { if (str.Size() != size_) { return false; } if (0 != strcmp(string_, str.c_str())) { return false; } return true; }