| 293 | } |
| 294 | |
| 295 | void Config::dumpCurrent(std::ofstream& fout) { |
| 296 | for (const auto& kv : node) { |
| 297 | fout << kv.first << ": " << kv.second << std::endl; |
| 298 | } |
| 299 | } |
| 300 | |
| 301 | void Config::dumpCurrent(std::ostream& out) { |
| 302 | for (const auto& kv : node) { |