aboutsummaryrefslogtreecommitdiff
path: root/include/cru/platform/win/window_class.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/cru/platform/win/window_class.hpp')
-rw-r--r--include/cru/platform/win/window_class.hpp26
1 files changed, 0 insertions, 26 deletions
diff --git a/include/cru/platform/win/window_class.hpp b/include/cru/platform/win/window_class.hpp
deleted file mode 100644
index be79af13..00000000
--- a/include/cru/platform/win/window_class.hpp
+++ /dev/null
@@ -1,26 +0,0 @@
-#pragma once
-#include "win_pre_config.hpp"
-
-#include "cru/common/base.hpp"
-
-#include <string>
-
-namespace cru::platform::win {
-class WindowClass : public Object {
- public:
- WindowClass(const std::wstring& name, WNDPROC window_proc, HINSTANCE h_instance);
- WindowClass(const WindowClass& other) = delete;
- WindowClass(WindowClass&& other) = delete;
- WindowClass& operator=(const WindowClass& other) = delete;
- WindowClass& operator=(WindowClass&& other) = delete;
- ~WindowClass() override = default;
-
- const wchar_t* GetName() const { return name_.c_str(); }
-
- ATOM GetAtom() const { return atom_; }
-
- private:
- std::wstring name_;
- ATOM atom_;
-};
-} // namespace cru::ui