diff options
author | 杨宇千 <crupest@outlook.com> | 2018-11-10 20:05:29 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-10 20:05:29 +0800 |
commit | 0e9e897d306c71ab46fd9b5371d811950124ee27 (patch) | |
tree | 6e7c9dcda090b0fd0153c634165393e693894c10 /src/application.hpp | |
parent | 09be0d0c86a789d568addc3153917aa604e4c7d7 (diff) | |
parent | fd3f899964bb0a3cad80bbb9afc4445fac1e6412 (diff) | |
download | cru-0e9e897d306c71ab46fd9b5371d811950124ee27.tar.gz cru-0e9e897d306c71ab46fd9b5371d811950124ee27.tar.bz2 cru-0e9e897d306c71ab46fd9b5371d811950124ee27.zip |
Merge pull request #7 from crupest/parent-window
Add parent window support.
Diffstat (limited to 'src/application.hpp')
-rw-r--r-- | src/application.hpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/application.hpp b/src/application.hpp index 90a43848..b9427826 100644 --- a/src/application.hpp +++ b/src/application.hpp @@ -8,7 +8,6 @@ #include <type_traits> #include "base.hpp" -#include "any_map.h" #ifdef CRU_DEBUG #include <unordered_set> @@ -42,7 +41,6 @@ namespace cru std::optional<LRESULT> HandleGodWindowMessage(HWND hwnd, int msg, WPARAM w_param, LPARAM l_param); private: - Application* application_; std::unique_ptr<ui::WindowClass> god_window_class_; HWND hwnd_; }; |