From 4ecfd41e36533d858c98d051ef70cab80e69e972 Mon Sep 17 00:00:00 2001 From: Daniel Wilhelm Date: Fri, 18 Apr 2014 17:00:50 +0200 Subject: 2.3 --- shared/xmlBase.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'shared/xmlBase.h') 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& 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& 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); -- cgit