diff options
author | Anthony Towns <aj@erisian.com.au> | 2018-04-04 18:03:00 +1000 |
---|---|---|
committer | Anthony Towns <aj@erisian.com.au> | 2018-04-11 23:15:28 +1000 |
commit | 95eb66d5842e5ccdeb7481b9ee92ac4aface6b0f (patch) | |
tree | 25e37463abd88f57e9ce9767bf49f4f5e1b51955 /src/util.h | |
parent | 4d34fcc7138f0ffc831f0f8601c50cc7f494c197 (diff) |
ArgsManager: support config file sections
Diffstat (limited to 'src/util.h')
-rw-r--r-- | src/util.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/util.h b/src/util.h index 6b80afc58f..ca6523ab14 100644 --- a/src/util.h +++ b/src/util.h @@ -228,9 +228,15 @@ protected: mutable CCriticalSection cs_args; std::map<std::string, std::vector<std::string>> m_override_args; std::map<std::string, std::vector<std::string>> m_config_args; + std::string m_network; void ReadConfigStream(std::istream& stream); public: + /** + * Select the network in use + */ + void SelectConfigNetwork(const std::string& network); + void ParseParameters(int argc, const char*const argv[]); void ReadConfigFile(const std::string& confPath); |