MeshLib
 
Loading...
Searching...
No Matches
MRTouchpadCocoaHandler.h
Go to the documentation of this file.
1#pragma once
2#ifdef __APPLE__
3
5
6namespace MR
7{
8
10class TouchpadCocoaHandler : public TouchpadController::Handler
11{
12public:
13 explicit TouchpadCocoaHandler( GLFWwindow* window );
14 ~TouchpadCocoaHandler() override;
15
16private:
17 class Impl;
18 std::unique_ptr<Impl> impl_;
19};
20
21}
22
23#endif
Definition MRCameraOrientationPlugin.h:8