diff options
Diffstat (limited to 'include/configparser.h')
-rw-r--r-- | include/configparser.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/configparser.h b/include/configparser.h index f44b7c8a5..999d79e24 100644 --- a/include/configparser.h +++ b/include/configparser.h @@ -51,8 +51,8 @@ struct ParseStack vars["quot"] = "\""; vars["newline"] = vars["nl"] = "\n"; } - bool ParseFile(const std::string& name, int flags); - bool ParseExec(const std::string& name, int flags); + bool ParseFile(const std::string& name, int flags, const std::string& mandatory_tag = ""); + bool ParseExec(const std::string& name, int flags, const std::string& mandatory_tag = ""); void DoInclude(ConfigTag* includeTag, int flags); void DoReadFile(const std::string& key, const std::string& file, int flags, bool exec); }; |