| 44 | } |
| 45 | |
| 46 | ServerPtr Server::create(connection::ConnectionPtr const &conn) { |
| 47 | ServerPtr ret(make_shared<Server>(conn, private_constructor{})); |
| 48 | return ret; |
| 49 | } |
| 50 | |
| 51 | void Server::update() { m_impl->update(); } |
| 52 |
nothing calls this directly
no outgoing calls
no test coverage detected