aboutsummaryrefslogtreecommitdiff
path: root/guilib/XMLUtils.h
diff options
context:
space:
mode:
authorjmarshallnz <jmarshallnz@svn>2010-03-09 22:57:20 +0000
committerjmarshallnz <jmarshallnz@svn>2010-03-09 22:57:20 +0000
commitc90a34f1b6670ed6c418f5f67fd803b72d45f133 (patch)
tree2396fe3d89012b0535c6e2d8ea4d79dd4165e4f0 /guilib/XMLUtils.h
parent7bedcc6122db44a819c620e7e674022f695a776b (diff)
added: GetDouble to XMLUtils
git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/trunk@28499 568bbfeb-2a22-0410-94d2-cc84cf5bfa90
Diffstat (limited to 'guilib/XMLUtils.h')
-rw-r--r--guilib/XMLUtils.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/guilib/XMLUtils.h b/guilib/XMLUtils.h
index 8eb9579132..0084af7ba0 100644
--- a/guilib/XMLUtils.h
+++ b/guilib/XMLUtils.h
@@ -34,6 +34,7 @@ public:
static bool GetUInt(const TiXmlNode* pRootNode, const char* strTag, uint32_t& dwUIntValue);
static bool GetLong(const TiXmlNode* pRootNode, const char* strTag, long& lLongValue);
static bool GetFloat(const TiXmlNode* pRootNode, const char* strTag, float& value);
+ static bool GetDouble(const TiXmlNode* pRootNode, const char* strTag, double &value);
static bool GetInt(const TiXmlNode* pRootNode, const char* strTag, int& iIntValue);
static bool GetBoolean(const TiXmlNode* pRootNode, const char* strTag, bool& bBoolValue);
static bool GetString(const TiXmlNode* pRootNode, const char* strTag, CStdString& strStringValue);