diff options
author | Anthony Towns <aj@erisian.com.au> | 2018-03-29 15:02:00 +1000 |
---|---|---|
committer | Anthony Towns <aj@erisian.com.au> | 2018-04-06 04:46:32 +1000 |
commit | 6d5815aad0ee0614972f288cbd1c68386e801d5d (patch) | |
tree | ddbe3bab22c6b8c98ccef97ef17ab88fa3b5c3c1 /src/util.h | |
parent | 834d3034158b6b199779d5dd218e15604798ca06 (diff) |
Separate out ReadConfigStream from ReadConfigFile
Diffstat (limited to 'src/util.h')
-rw-r--r-- | src/util.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/util.h b/src/util.h index 5afe80cb06..bfd3184ac2 100644 --- a/src/util.h +++ b/src/util.h @@ -228,6 +228,8 @@ protected: std::map<std::string, std::vector<std::string>> mapMultiArgs; std::unordered_set<std::string> m_negated_args; + void ReadConfigStream(std::istream& stream); + public: void ParseParameters(int argc, const char*const argv[]); void ReadConfigFile(const std::string& confPath); |