| 55 | return conn; |
| 56 | } |
| 57 | std::tuple<void *, ConnectionPtr> Connection::createLoopbackConnection() { |
| 58 | auto conn = make_shared<VrpnBasedConnection>( |
| 59 | VrpnBasedConnection::VRPN_LOOPBACK); |
| 60 | return std::make_tuple(conn->getUnderlyingObject(), |
| 61 | ConnectionPtr{conn}); |
| 62 | } |
| 63 | |
| 64 | ConnectionPtr |
| 65 | Connection::retrieveConnection(const pluginhost::RegistrationContext &ctx) { |
nothing calls this directly
no test coverage detected