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