| 33 | #include <iostream> |
| 34 | |
| 35 | void myAnalogCallback(void * /*userdata*/, const OSVR_TimeValue * /*timestamp*/, |
| 36 | const OSVR_AnalogReport *report) { |
| 37 | std::cout << "Got report: channel is " << report->state << std::endl; |
| 38 | } |
| 39 | |
| 40 | int main() { |
| 41 | osvr::clientkit::ClientContext context( |
nothing calls this directly
no outgoing calls
no test coverage detected