40 DmrppStr::_duplicate(
const DmrppStr &)
44 DmrppStr::DmrppStr(
const string &n) : Str(n), DmrppCommon()
48 DmrppStr::DmrppStr(
const string &n,
const string &d) : Str(n, d), DmrppCommon()
53 DmrppStr::ptr_duplicate()
55 return new DmrppStr(*
this);
58 DmrppStr::DmrppStr(
const DmrppStr &rhs) : Str(rhs), DmrppCommon(rhs)
64 DmrppStr::operator=(
const DmrppStr &rhs)
69 dynamic_cast<Str &
>(*this) = rhs;
72 DmrppCommon::m_duplicate_common(rhs);
90 void DmrppStr::dump(ostream & strm)
const
92 strm << BESIndent::LMarg <<
"DmrppStr::dump - (" << (
void *)
this <<
")" << endl;
94 DmrppCommon::dump(strm);
96 strm << BESIndent::LMarg <<
"value: " << d_buf << endl;
97 BESIndent::UnIndent();