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