32 #include "DmrppUInt32.h"
40 DmrppUInt32::_duplicate(
const DmrppUInt32 &)
44 DmrppUInt32::DmrppUInt32(
const string &n) : UInt32(n), DmrppCommon()
48 DmrppUInt32::DmrppUInt32(
const string &n,
const string &d) : UInt32(n, d), DmrppCommon()
53 DmrppUInt32::ptr_duplicate()
55 return new DmrppUInt32(*
this);
58 DmrppUInt32::DmrppUInt32(
const DmrppUInt32 &rhs) : UInt32(rhs), DmrppCommon(rhs)
64 DmrppUInt32::operator=(
const DmrppUInt32 &rhs)
69 dynamic_cast<UInt32 &
>(*this) = rhs;
72 DmrppCommon::m_duplicate_common(rhs);
80 BESDEBUG(
"dmrpp",
"Entering " <<__PRETTY_FUNCTION__ <<
" for '" << name() <<
"'" << endl);
85 set_value(*
reinterpret_cast<dods_uint32*
>(
read_atomic(name())));
94 void DmrppUInt32::dump(ostream & strm)
const
96 strm << BESIndent::LMarg <<
"DmrppUInt32::dump - (" << (
void *)
this <<
")" << endl;
98 DmrppCommon::dump(strm);
100 strm << BESIndent::LMarg <<
"value: " << d_buf << endl;
101 BESIndent::UnIndent();