24#ifndef KAGE_UTIL_XMLTAG_H
25 #define KAGE_UTIL_XMLTAG_H
37 XmlTag(
string p_name, vector<XmlTagProperty> p_xmlTagProperties);
42 void setProperties(vector<XmlTagProperty> p_xmlTagProperties);
vector< XmlTagProperty > getProperties()
Definition: xmltag.cpp:103
vector< XmlTag > _children
Definition: xmltag.h:51
XmlTag getChild(unsigned int p_index)
Definition: xmltag.cpp:119
string getName()
Definition: xmltag.cpp:99
void copy(XmlTag p_xmlTag)
Definition: xmltag.cpp:67
unsigned int addChild(XmlTag p_xmlTag)
Definition: xmltag.cpp:114
string _name
Definition: xmltag.h:54
XmlTag()
Definition: xmltag.cpp:26
void setName(string p_name)
Definition: xmltag.cpp:88
virtual ~XmlTag()
Definition: xmltag.cpp:41
string _value
Definition: xmltag.h:52
vector< XmlTagProperty > _xmlTagProperties
Definition: xmltag.h:55
std::string toString()
Definition: xmltag.cpp:72
bool equalTo(XmlTag p_xmlTag)
Definition: xmltag.cpp:50
void setProperties(vector< XmlTagProperty > p_xmlTagProperties)
Definition: xmltag.cpp:92
XmlTag clone()
Definition: xmltag.cpp:45