| 14 | { |
| 15 | |
| 16 | void TouchpadController::initialize( GLFWwindow* window ) |
| 17 | { |
| 18 | #if defined( __APPLE__ ) |
| 19 | handler_ = std::make_unique<TouchpadCocoaHandler>( window ); |
| 20 | #elif defined( _WIN32 ) |
| 21 | handler_ = std::make_unique<TouchpadWin32Handler>( window ); |
| 22 | #else |
| 23 | (void)window; |
| 24 | #endif |
| 25 | } |
| 26 | |
| 27 | void TouchpadController::reset() |
| 28 | { |
no outgoing calls
no test coverage detected