39class DmrppInt64:
public libdap::Int64,
public DmrppCommon {
42 DmrppInt64(
const std::string &n) : libdap::Int64(n), DmrppCommon() { }
43 DmrppInt64(
const std::string &n,
const std::string &d) : libdap::Int64(n, d), DmrppCommon() { }
44 DmrppInt64(
const std::string &n, std::shared_ptr<DMZ> dmz) : libdap::Int64(n), DmrppCommon(std::move(dmz)) { }
45 DmrppInt64(
const std::string &n,
const std::string &d, std::shared_ptr<DMZ> dmz) : libdap::Int64(n, d), DmrppCommon(std::move(dmz)) { }
46 DmrppInt64(
const DmrppInt64 &) =
default;
48 ~DmrppInt64()
override =
default;
50 DmrppInt64 &operator=(
const DmrppInt64 &rhs);
52 libdap::BaseType *ptr_duplicate()
override {
53 return new DmrppInt64(*
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;