diff options
Diffstat (limited to 'src/ui/include/wheel_encoder.hpp')
| -rw-r--r-- | src/ui/include/wheel_encoder.hpp | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/ui/include/wheel_encoder.hpp b/src/ui/include/wheel_encoder.hpp index 0651ce0b..d4975db9 100644 --- a/src/ui/include/wheel_encoder.hpp +++ b/src/ui/include/wheel_encoder.hpp @@ -15,16 +15,16 @@ namespace ui { class TouchWheelEncoder { - public: - explicit TouchWheelEncoder(std::weak_ptr<drivers::RelativeWheel> wheel); + public: + explicit TouchWheelEncoder(std::weak_ptr<drivers::RelativeWheel> wheel); - auto Read(lv_indev_data_t *data) -> void; - auto registration() -> lv_indev_t* { return registration_; } + auto Read(lv_indev_data_t* data) -> void; + auto registration() -> lv_indev_t* { return registration_; } - private: - lv_indev_drv_t driver_; - lv_indev_t *registration_; - std::weak_ptr<drivers::RelativeWheel> wheel_; + private: + lv_indev_drv_t driver_; + lv_indev_t* registration_; + std::weak_ptr<drivers::RelativeWheel> wheel_; }; -} // namespace ui +} // namespace ui |
