summaryrefslogtreecommitdiff
path: root/shared/xmlBase.h
diff options
context:
space:
mode:
Diffstat (limited to 'shared/xmlBase.h')
-rw-r--r--shared/xmlBase.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/shared/xmlBase.h b/shared/xmlBase.h
index 5fc13b65..ed838843 100644
--- a/shared/xmlBase.h
+++ b/shared/xmlBase.h
@@ -38,6 +38,7 @@ namespace xmlAccess
bool readXmlElement(const std::string& name, const TiXmlElement* parent, std::vector<wxString>& output);
bool readXmlAttribute(const std::string& name, const TiXmlElement* node, std::string& output);
+ bool readXmlAttribute(const std::string& name, const TiXmlElement* node, wxString& output);
bool readXmlAttribute(const std::string& name, const TiXmlElement* node, int& output);
bool readXmlAttribute(const std::string& name, const TiXmlElement* node, unsigned int& output);
bool readXmlAttribute(const std::string& name, const TiXmlElement* node, bool& output);
@@ -51,6 +52,7 @@ namespace xmlAccess
void addXmlElement(const std::string& name, const std::vector<wxString>& value, TiXmlElement* parent);
void addXmlAttribute(const std::string& name, const std::string& value, TiXmlElement* node);
+ void addXmlAttribute(const std::string& name, const wxString& value, TiXmlElement* node);
void addXmlAttribute(const std::string& name, const int value, TiXmlElement* node);
void addXmlAttribute(const std::string& name, const unsigned int value, TiXmlElement* node);
void addXmlAttribute(const std::string& name, const bool value, TiXmlElement* node);
bgstack15