| 44 | namespace client { |
| 45 | |
| 46 | class TrackerRemoteFactory { |
| 47 | public: |
| 48 | TrackerRemoteFactory(VRPNConnectionCollection const &conns); |
| 49 | |
| 50 | template <typename T> void registerWith(T &factory) const { |
| 51 | factory.addFactory("tracker", *this); |
| 52 | } |
| 53 | |
| 54 | shared_ptr<RemoteHandler> |
| 55 | operator()(common::OriginalSource const &source, |
| 56 | common::InterfaceList &ifaces, common::ClientContext &ctx); |
| 57 | |
| 58 | private: |
| 59 | VRPNConnectionCollection m_conns; |
| 60 | }; |
| 61 | |
| 62 | } // namespace client |
| 63 | } // namespace osvr |
no outgoing calls
no test coverage detected