40 DmrppStr::operator=(
const DmrppStr &rhs)
45 dynamic_cast<Str &
>(*this) = rhs;
47 dynamic_cast<DmrppCommon &
>(*this) = rhs;
56 if (!get_chunks_loaded())
62 string value = read_atomic(name());
70 DmrppStr::set_send_p(
bool state)
72 if (!get_attributes_loaded())
73 load_attributes(
this);
75 Str::set_send_p(state);
78 void DmrppStr::dump(ostream & strm)
const
80 strm << BESIndent::LMarg <<
"DmrppStr::dump - (" << (
void *)
this <<
")" << endl;
82 DmrppCommon::dump(strm);
84 strm << BESIndent::LMarg <<
"value: " << d_buf << endl;
85 BESIndent::UnIndent();