aboutsummaryrefslogtreecommitdiff
path: root/include/cru/osx/gui/Resource.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/cru/osx/gui/Resource.h')
-rw-r--r--include/cru/osx/gui/Resource.h24
1 files changed, 0 insertions, 24 deletions
diff --git a/include/cru/osx/gui/Resource.h b/include/cru/osx/gui/Resource.h
deleted file mode 100644
index bc3f9cd6..00000000
--- a/include/cru/osx/gui/Resource.h
+++ /dev/null
@@ -1,24 +0,0 @@
-#pragma once
-#include "../Resource.h"
-
-#include "cru/platform/gui/Base.h"
-
-namespace cru::platform::gui::osx {
-class OsxGuiResource : public platform::osx::OsxResource {
- public:
- explicit OsxGuiResource(IUiApplication* ui_application);
-
- CRU_DELETE_COPY(OsxGuiResource)
- CRU_DELETE_MOVE(OsxGuiResource)
-
- ~OsxGuiResource() override = default;
-
- public:
- String GetPlatformId() const override { return u"OSX GUI"; }
-
- IUiApplication* GetUiApplication() const { return ui_application_; }
-
- private:
- IUiApplication* ui_application_;
-};
-} // namespace cru::platform::gui::osx