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