summaryrefslogtreecommitdiff
path: root/rotaryencoder.h
diff options
context:
space:
mode:
Diffstat (limited to 'rotaryencoder.h')
-rw-r--r--rotaryencoder.h20
1 files changed, 0 insertions, 20 deletions
diff --git a/rotaryencoder.h b/rotaryencoder.h
deleted file mode 100644
index c0c39d8..0000000
--- a/rotaryencoder.h
+++ /dev/null
@@ -1,20 +0,0 @@
-#pragma once
-
-#include <cstdint>
-
-// TODO: delete singleton functionality
-class RotaryEncoder final
-{
-public:
- RotaryEncoder();
- ~RotaryEncoder();
-
-public:
- static RotaryEncoder* instance();
-
-public:
- int32_t position() const;
-
-private:
- static inline RotaryEncoder* m_self { nullptr };
-};