| 35 | { |
| 36 | |
| 37 | class EventLoop |
| 38 | { |
| 39 | public: |
| 40 | EventLoop(); |
| 41 | virtual ~EventLoop(); |
| 42 | |
| 43 | void start(void *usb_context); |
| 44 | |
| 45 | void stop(); |
| 46 | private: |
| 47 | bool shutdown_; |
| 48 | libfreenect2::thread *thread_; |
| 49 | void *usb_context_; |
| 50 | |
| 51 | static void static_execute(void *cookie); |
| 52 | void execute(); |
| 53 | }; |
| 54 | |
| 55 | } /* namespace usb */ |
| 56 | } /* namespace libfreenect2 */ |
nothing calls this directly
no outgoing calls
no test coverage detected