![]() |
zeep::xml::doctype::element_
// In header: <zeep/xml/doctype.hpp> class element_ { public: // construct/copy/destruct element_(const element_ &) = delete; element_(const std::string &, bool, bool); element_ & operator=(const element_ &) = delete; ~element_(); // public member functions const attribute_list & get_attributes() const; void add_attribute(attribute_ *); const attribute_ * get_attribute(const std::string &) const; const std::string & name() const; bool is_declared() const; bool empty() const; void set_allowed(content_spec_ptr); content_spec_ptr get_allowed() const; };
element_
public member functionsconst attribute_list & get_attributes() const;
void add_attribute(attribute_ * attr);
const attribute_ * get_attribute(const std::string & name) const;
const std::string & name() const;
bool is_declared() const;
bool empty() const;
void set_allowed(content_spec_ptr allowed);
content_spec_ptr get_allowed() const;