| 33 | #include <boost/range/algorithm.hpp> |
| 34 | |
| 35 | OSVR_ClientInterfaceObject::OSVR_ClientInterfaceObject( |
| 36 | ::osvr::common::ClientContext *ctx, std::string const &path, |
| 37 | OSVR_ClientInterfaceObject::PrivateConstructor const &) |
| 38 | : m_ctx(ctx), m_path(path) { |
| 39 | OSVR_DEV_VERBOSE("Interface initialized for " << m_path); |
| 40 | } |
| 41 | |
| 42 | std::string const &OSVR_ClientInterfaceObject::getPath() const { |
| 43 | return m_path; |
nothing calls this directly
no outgoing calls
no test coverage detected