rendered paste body//XmlElement.h#ifndef XMLELEMENT_H_#define XMLELEMENT_H_class XmlElement { private: std::string name; std::vector<XmlElement> children; std::string value; bool closed;public: XmlElement(); virtual ~XmlElement(); std::vector<XmlElement> getChildren() const; bool getClosed() const; std::string getName() const; std::string getValue() const; void setChildren(std::vector<XmlElement> children); void setClosed(bool closed); void setName(std::string name); void setValue(std::string value);};#endif /* XMLELEMENT_H_ */