| 188 | std::unordered_set<std::shared_ptr<Connection>> connections; |
| 189 | |
| 190 | void addConnection(std::shared_ptr<Connection> connection) |
| 191 | { |
| 192 | connections.emplace(connection); |
| 193 | } |
| 194 | |
| 195 | void removeConnection(std::shared_ptr<Connection> connection) |
| 196 | { |
no test coverage detected