aboutsummaryrefslogtreecommitdiff
path: root/src/osx/gui/CursorPrivate.h
diff options
context:
space:
mode:
authorcrupest <crupest@outlook.com>2022-05-15 14:08:06 +0800
committercrupest <crupest@outlook.com>2022-05-15 14:08:06 +0800
commit8ad2966933957ac5d6ff8dcd5e732736fd5e4dc6 (patch)
tree77e41cc14264060517c0f7ed95837012afb8342e /src/osx/gui/CursorPrivate.h
parent9e0c9d3499bc50c3534b4dc500d8b5d0b5f22752 (diff)
downloadcru-8ad2966933957ac5d6ff8dcd5e732736fd5e4dc6.tar.gz
cru-8ad2966933957ac5d6ff8dcd5e732736fd5e4dc6.tar.bz2
cru-8ad2966933957ac5d6ff8dcd5e732736fd5e4dc6.zip
...
Diffstat (limited to 'src/osx/gui/CursorPrivate.h')
-rw-r--r--src/osx/gui/CursorPrivate.h29
1 files changed, 0 insertions, 29 deletions
diff --git a/src/osx/gui/CursorPrivate.h b/src/osx/gui/CursorPrivate.h
deleted file mode 100644
index c840e286..00000000
--- a/src/osx/gui/CursorPrivate.h
+++ /dev/null
@@ -1,29 +0,0 @@
-#pragma once
-#include "cru/osx/gui/Cursor.h"
-
-#import <AppKit/NSCursor.h>
-
-namespace cru::platform::gui::osx {
-class OsxWindow;
-
-namespace details {
-class OsxWindowPrivate;
-
-class OsxCursorPrivate {
- friend OsxWindow;
- friend OsxWindowPrivate;
-
- public:
- OsxCursorPrivate(OsxCursor* cursor, SystemCursorType cursor_type);
-
- CRU_DELETE_COPY(OsxCursorPrivate)
- CRU_DELETE_MOVE(OsxCursorPrivate)
-
- ~OsxCursorPrivate();
-
- private:
- OsxCursor* cursor_;
- NSCursor* ns_cursor_;
-};
-} // namespace details
-} // namespace cru::platform::gui::osx