diff options
author | Andrei Karas <akaras@inbox.ru> | 2012-06-28 21:59:59 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-06-28 21:59:59 +0300 |
commit | 503a2b302d9e13b99be4574e5d7b8821dd31504d (patch) | |
tree | 34ecba674db95cdedb9fe8f5767b0dfa22571e86 /src/utils/xml.h | |
parent | 6207ffb9a38c7e3718b7c4d87500ea9360d4d44f (diff) | |
download | mv-503a2b302d9e13b99be4574e5d7b8821dd31504d.tar.gz mv-503a2b302d9e13b99be4574e5d7b8821dd31504d.tar.bz2 mv-503a2b302d9e13b99be4574e5d7b8821dd31504d.tar.xz mv-503a2b302d9e13b99be4574e5d7b8821dd31504d.zip |
Add validation for some xml parameters.
Diffstat (limited to 'src/utils/xml.h')
-rw-r--r-- | src/utils/xml.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/utils/xml.h b/src/utils/xml.h index eb5ee88b0..a4ff7eb2e 100644 --- a/src/utils/xml.h +++ b/src/utils/xml.h @@ -86,6 +86,12 @@ namespace XML int getProperty(XmlNodePtr node, const char *name, int def); /** + * Gets an integer property from an XmlNodePtr. + */ + int getIntProperty(XmlNodePtr node, const char* name, int def, + int min, int max); + + /** * Gets a string property from an XmlNodePtr. */ std::string getProperty(XmlNodePtr node, const char *name, |