| 180 | std::map<std::string, std::vector<std::string> >& GetOverrideArgs() { return m_override_args; } |
| 181 | std::map<std::string, std::vector<std::string> >& GetConfigArgs() { return m_config_args; } |
| 182 | void ReadConfigString(const std::string str_config) |
| 183 | { |
| 184 | std::istringstream streamConfig(str_config); |
| 185 | { |
| 186 | LOCK(cs_args); |
| 187 | m_config_args.clear(); |
| 188 | } |
| 189 | std::string error; |
| 190 | ReadConfigStream(streamConfig, error); |
| 191 | } |
| 192 | void SetNetworkOnlyArg(const std::string arg) |
| 193 | { |
| 194 | LOCK(cs_args); |
no test coverage detected