| 37 | namespace server { |
| 38 | |
| 39 | ServerPtr Server::createLocal() { |
| 40 | connection::ConnectionPtr conn( |
| 41 | connection::Connection::createLocalConnection()); |
| 42 | ServerPtr ret(make_shared<Server>(conn, private_constructor{})); |
| 43 | return ret; |
| 44 | } |
| 45 | |
| 46 | ServerPtr Server::create(connection::ConnectionPtr const &conn) { |
| 47 | ServerPtr ret(make_shared<Server>(conn, private_constructor{})); |
nothing calls this directly
no outgoing calls
no test coverage detected