aboutsummaryrefslogtreecommitdiff
path: root/include/cru/osx/gui/Window.hpp
diff options
context:
space:
mode:
authorcrupest <crupest@outlook.com>2021-09-18 16:13:40 +0800
committercrupest <crupest@outlook.com>2021-09-18 16:13:40 +0800
commit9a42f6fd709feaa9e9e3cc4530c67e2a237d5bee (patch)
treeb063fadfa6197947b975195f967898ee9b926f2d /include/cru/osx/gui/Window.hpp
parente5b3502b03bdbdbecbd2e8b328e0f874499b452b (diff)
downloadcru-9a42f6fd709feaa9e9e3cc4530c67e2a237d5bee.tar.gz
cru-9a42f6fd709feaa9e9e3cc4530c67e2a237d5bee.tar.bz2
cru-9a42f6fd709feaa9e9e3cc4530c67e2a237d5bee.zip
...
Diffstat (limited to 'include/cru/osx/gui/Window.hpp')
-rw-r--r--include/cru/osx/gui/Window.hpp18
1 files changed, 18 insertions, 0 deletions
diff --git a/include/cru/osx/gui/Window.hpp b/include/cru/osx/gui/Window.hpp
new file mode 100644
index 00000000..14ad05ad
--- /dev/null
+++ b/include/cru/osx/gui/Window.hpp
@@ -0,0 +1,18 @@
+#pragma once
+#include "Resource.hpp"
+#include "cru/platform/gui/Base.hpp"
+#include "cru/platform/gui/Window.hpp"
+
+namespace cru::platform::gui::osx {
+class OsxWindow : public OsxGuiResource, public virtual INativeWindow {
+ public:
+ OsxWindow();
+
+ CRU_DELETE_COPY(OsxWindow)
+ CRU_DELETE_MOVE(OsxWindow)
+
+ ~OsxWindow() override;
+
+ private:
+};
+} // namespace cru::platform::gui::osx