32 #include "DmrppFloat32.h"
40 DmrppFloat32::operator=(
const DmrppFloat32 &rhs)
45 dynamic_cast<Float32 &
>(*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_float32*
>(read_atomic(name())));
73 DmrppFloat32::set_send_p(
bool state)
75 if (!get_attributes_loaded())
76 load_attributes(
this);
78 Float32::set_send_p(state);
81 void DmrppFloat32::dump(ostream & strm)
const
83 strm << BESIndent::LMarg <<
"DmrppFloat32::dump - (" << (
void *)
this <<
")" << endl;
85 DmrppCommon::dump(strm);
87 strm << BESIndent::LMarg <<
"value: " << d_buf << endl;
88 BESIndent::UnIndent();