libzeep

PrevUpHomeNext

Struct content_spec_seq

zeep::xml::doctype::content_spec_seq

Synopsis

// In header: <zeep/xml/doctype.hpp>


struct content_spec_seq : public zeep::xml::doctype::content_spec_base {
  // construct/copy/destruct
  content_spec_seq(content_spec_ptr);
  ~content_spec_seq();

  // public member functions
  void add(content_spec_ptr);
  virtual state_ptr create_state() const;
  virtual bool element_content() const;

  // public data members
  content_spec_list m_allowed;
};

Description

content_spec_seq public construct/copy/destruct

  1. content_spec_seq(content_spec_ptr a);
  2. ~content_spec_seq();

content_spec_seq public member functions

  1. void add(content_spec_ptr a);
  2. virtual state_ptr create_state() const;
  3. virtual bool element_content() const;

PrevUpHomeNext