All pastes #2000493 Raw Edit

Someone

public cpp v1 · immutable
#2000493 ·published 2010-11-24 00:27 UTC
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_ */