summaryrefslogtreecommitdiff
path: root/include/configreader.h
diff options
context:
space:
mode:
authorPeter Powell <petpow@saberuk.com>2018-06-29 11:26:51 +0100
committerPeter Powell <petpow@saberuk.com>2018-07-10 21:14:56 +0100
commite22383c6f4f4c5f16e40e04db0f14ad4b357a142 (patch)
tree521ebd5d0b899942df032c72f861b88270e75fd7 /include/configreader.h
parent39b51a7c11e384603102c01de1c46c28e7699046 (diff)
Add a ConfigTag::getString overload that calls a validation method.
Diffstat (limited to 'include/configreader.h')
-rw-r--r--include/configreader.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/configreader.h b/include/configreader.h
index a82420b4e..b603f2e10 100644
--- a/include/configreader.h
+++ b/include/configreader.h
@@ -43,6 +43,8 @@ class CoreExport ConfigTag : public refcountbase
const int src_line;
/** Get the value of an option, using def if it does not exist */
+ std::string getString(const std::string& key, const std::string& def, const TR1NS::function<bool(const std::string&)>& validator);
+ /** Get the value of an option, using def if it does not exist */
std::string getString(const std::string& key, const std::string& def = "", size_t minlen = 0, size_t maxlen = UINT32_MAX);
/** 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);