aboutsummaryrefslogtreecommitdiff
path: root/include/CursorTracker.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/CursorTracker.hpp')
-rw-r--r--include/CursorTracker.hpp23
1 files changed, 0 insertions, 23 deletions
diff --git a/include/CursorTracker.hpp b/include/CursorTracker.hpp
deleted file mode 100644
index ff7374f..0000000
--- a/include/CursorTracker.hpp
+++ /dev/null
@@ -1,23 +0,0 @@
-#pragma once
-
-#include <optional>
-#include <string>
-#include <mglpp/system/vec.hpp>
-
-namespace gsr {
- struct CursorInfo {
- mgl::vec2i position;
- std::string monitor_name;
- };
-
- class CursorTracker {
- public:
- CursorTracker() = default;
- CursorTracker(const CursorTracker&) = delete;
- CursorTracker& operator=(const CursorTracker&) = delete;
- virtual ~CursorTracker() = default;
-
- virtual void update() = 0;
- virtual std::optional<CursorInfo> get_latest_cursor_info() = 0;
- };
-} \ No newline at end of file