32 #include "DmrppInt8.h"
40 DmrppInt8::operator=(
const DmrppInt8 &rhs)
45 dynamic_cast<Int8 &
>(*this) = rhs;
47 dynamic_cast<DmrppCommon &
>(*this) = rhs;
56 BESDEBUG(
"dmrpp",
"Entering " <<__PRETTY_FUNCTION__ <<
" for '" << name() <<
"'" << endl);
58 if (!get_chunks_loaded())
64 set_value(*
reinterpret_cast<dods_int8*
>(read_atomic(name())));
73 DmrppInt8::set_send_p(
bool state)
75 if (!get_attributes_loaded())
76 load_attributes(
this);
78 Int8::set_send_p(state);
81 void DmrppInt8::dump(ostream & strm)
const
83 strm << BESIndent::LMarg <<
"DmrppInt8::dump - (" << (
void *)
this <<
")" << endl;
85 DmrppCommon::dump(strm);
87 strm << BESIndent::LMarg <<
"value: " << d_buf << endl;
88 BESIndent::UnIndent();