diff options
author | crupest <crupest@outlook.com> | 2022-05-15 13:56:40 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2022-05-15 13:56:40 +0800 |
commit | 9e0c9d3499bc50c3534b4dc500d8b5d0b5f22752 (patch) | |
tree | 7342f6991771fa31b16fd6a5ed892ff6025f3d05 /include/cru/win/gui/WindowClass.h | |
parent | 41de54bad2c0f857821fcc83f41af3334d068b6d (diff) | |
download | cru-9e0c9d3499bc50c3534b4dc500d8b5d0b5f22752.tar.gz cru-9e0c9d3499bc50c3534b4dc500d8b5d0b5f22752.tar.bz2 cru-9e0c9d3499bc50c3534b4dc500d8b5d0b5f22752.zip |
...
Diffstat (limited to 'include/cru/win/gui/WindowClass.h')
-rw-r--r-- | include/cru/win/gui/WindowClass.h | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/include/cru/win/gui/WindowClass.h b/include/cru/win/gui/WindowClass.h deleted file mode 100644 index 50729887..00000000 --- a/include/cru/win/gui/WindowClass.h +++ /dev/null @@ -1,24 +0,0 @@ -#pragma once -#include "Base.h" - -#include <string> - -namespace cru::platform::gui::win { -class CRU_WIN_GUI_API WindowClass : public Object { - public: - WindowClass(std::wstring name, WNDPROC window_proc, HINSTANCE h_instance); - - CRU_DELETE_COPY(WindowClass) - CRU_DELETE_MOVE(WindowClass) - - ~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::platform::gui::win |