| 42 | namespace osvr { |
| 43 | namespace client { |
| 44 | void populateRemoteHandlerFactory(RemoteHandlerFactory &factory, |
| 45 | VRPNConnectionCollection const &conns) { |
| 46 | /// Register all the factories. |
| 47 | TrackerRemoteFactory(conns).registerWith(factory); |
| 48 | AnalogRemoteFactory(conns).registerWith(factory); |
| 49 | ButtonRemoteFactory(conns).registerWith(factory); |
| 50 | ImagingRemoteFactory(conns).registerWith(factory); |
| 51 | EyeTrackerRemoteFactory(conns).registerWith(factory); |
| 52 | Location2DRemoteFactory(conns).registerWith(factory); |
| 53 | LocomotionRemoteFactory(conns).registerWith(factory); |
| 54 | DirectionRemoteFactory(conns).registerWith(factory); |
| 55 | } |
| 56 | |
| 57 | } // namespace client |
| 58 | } // namespace osvr |
no test coverage detected