summaryrefslogtreecommitdiff
path: root/src/input/include/feedback_haptics.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/input/include/feedback_haptics.hpp')
-rw-r--r--src/input/include/feedback_haptics.hpp26
1 files changed, 0 insertions, 26 deletions
diff --git a/src/input/include/feedback_haptics.hpp b/src/input/include/feedback_haptics.hpp
deleted file mode 100644
index a307a429..00000000
--- a/src/input/include/feedback_haptics.hpp
+++ /dev/null
@@ -1,26 +0,0 @@
-/*
- * Copyright 2024 jacqueline <me@jacqueline.id.au>
- *
- * SPDX-License-Identifier: GPL-3.0-only
- */
-
-#pragma once
-
-#include <cstdint>
-
-#include "feedback_device.hpp"
-#include "haptics.hpp"
-
-namespace input {
-
-class Haptics : public IFeedbackDevice {
- public:
- Haptics(drivers::Haptics& haptics_);
-
- auto feedback(uint8_t event_type) -> void override;
-
- private:
- drivers::Haptics& haptics_;
-};
-
-} // namespace input