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