| 73 | class WaitCallbackLoop { |
| 74 | public: |
| 75 | WaitCallbackLoop(::util::RunLoopManagerBase &run, |
| 76 | DeviceUpdateCallback const &cb) |
| 77 | : m_cb(cb), m_run(&run) {} |
| 78 | void operator()() { |
| 79 | OSVR_DEV_VERBOSE("WaitCallbackLoop starting"); |
| 80 | ::util::LoopGuard guard(*m_run); |
nothing calls this directly
no outgoing calls
no test coverage detected