| 1426 | } |
| 1427 | |
| 1428 | void Networks::Write(IdSet const & ids, std::ofstream & stream) const |
| 1429 | { |
| 1430 | for (auto networkId : ids) |
| 1431 | { |
| 1432 | auto const & networkTitle = m_data.find(networkId)->second; |
| 1433 | |
| 1434 | auto node = base::NewJSONObject(); |
| 1435 | ToJSONObject(*node, "id", networkId); |
| 1436 | ToJSONObject(*node, "title", networkTitle); |
| 1437 | |
| 1438 | WriteJson(node.get(), stream); |
| 1439 | } |
| 1440 | } |
| 1441 | |
| 1442 | void Routes::Write(IdSet const & ids, std::ofstream & stream) const |
| 1443 | { |
no test coverage detected