| 34 | #include <string> |
| 35 | |
| 36 | void printEyeTracker2DReport(const OSVR_EyeTracker2DReport *report) { |
| 37 | |
| 38 | std::cout << "2D Data:" << report->state.data[0] << "; " |
| 39 | << report->state.data[1] << std::endl; |
| 40 | } |
| 41 | |
| 42 | void printEyeTracker3DReport(const OSVR_EyeTracker3DReport *report) { |
| 43 |
no outgoing calls
no test coverage detected