MCPcopy Create free account
hub / github.com/OSVR/OSVR-Core / createLocal

Method createLocal

src/osvr/Server/Server.cpp:39–44  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

37namespace 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{}));

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected