diff options
Diffstat (limited to 'include/configreader.h')
-rw-r--r-- | include/configreader.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/configreader.h b/include/configreader.h index 85ce21f14..dba092920 100644 --- a/include/configreader.h +++ b/include/configreader.h @@ -47,6 +47,8 @@ class CoreExport ConfigTag : public refcountbase /** Get the value of an option, using def if it does not exist */ long getInt(const std::string& key, long def, long min = LONG_MIN, long max = LONG_MAX); /** Get the value of an option, using def if it does not exist */ + unsigned long getUInt(const std::string& key, unsigned long def, unsigned long min = 0, unsigned long max = ULONG_MAX); + /** Get the value of an option, using def if it does not exist */ double getFloat(const std::string& key, double def); /** Get the value of an option, using def if it does not exist */ bool getBool(const std::string& key, bool def = false); |