39class DmrppByte:
public libdap::Byte,
public DmrppCommon {
42 DmrppByte(
const std::string &n) :
Byte(n), DmrppCommon() { }
43 DmrppByte(
const std::string &n,
const std::string &d) :
Byte(n, d), DmrppCommon() { }
44 DmrppByte(
const std::string &n, shared_ptr<DMZ> dmz) :
Byte(n), DmrppCommon(std::move(dmz)) { }
45 DmrppByte(
const std::string &n,
const std::string &d, shared_ptr<DMZ> dmz) :
Byte(n, d), DmrppCommon(std::move(dmz)) { }
46 DmrppByte(
const DmrppByte &) =
default;
48 ~DmrppByte()
override =
default;
50 DmrppByte &operator=(
const DmrppByte &rhs);
52 libdap::BaseType *ptr_duplicate()
override {
53 return new DmrppByte(*
this);
57 void set_send_p(
bool state)
override;
59 void print_dap4(libdap::XMLWriter &writer,
bool constrained =
false)
override
64 void dump(
ostream & strm)
const override;