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