32 #include "DmrppFloat64.h"
40 DmrppFloat64::operator=(
const DmrppFloat64 &rhs)
45 dynamic_cast<Float64 &
>(*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_float64*
>(read_atomic(name())));
72 DmrppFloat64::set_send_p(
bool state)
74 if (!get_attributes_loaded())
75 load_attributes(
this);
77 Float64::set_send_p(state);
80 void DmrppFloat64::dump(ostream & strm)
const
82 strm << BESIndent::LMarg <<
"DmrppFloat64::dump - (" << (
void *)
this <<
")" << endl;
84 DmrppCommon::dump(strm);
86 strm << BESIndent::LMarg <<
"value: " << d_buf << endl;
87 BESIndent::UnIndent();