diff options
author | crupest <crupest@outlook.com> | 2019-05-26 23:38:34 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2019-05-26 23:38:34 +0800 |
commit | 9e2d63adb90c293f4bc2893b0de7655aea2ecc85 (patch) | |
tree | 102bb993bf0dbca6c0673195a327f01c59287172 /include/cru/platform/native/native_window.hpp | |
parent | a191a44e0ec7fd353cb9a60e2e7a18f45f6df04a (diff) | |
download | cru-9e2d63adb90c293f4bc2893b0de7655aea2ecc85.tar.gz cru-9e2d63adb90c293f4bc2893b0de7655aea2ecc85.tar.bz2 cru-9e2d63adb90c293f4bc2893b0de7655aea2ecc85.zip |
...
Diffstat (limited to 'include/cru/platform/native/native_window.hpp')
-rw-r--r-- | include/cru/platform/native/native_window.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/cru/platform/native/native_window.hpp b/include/cru/platform/native/native_window.hpp index 0e076348..3a0fd3e1 100644 --- a/include/cru/platform/native/native_window.hpp +++ b/include/cru/platform/native/native_window.hpp @@ -10,7 +10,7 @@ struct IPainter; } namespace cru::platform::native { -struct NativeWindow : public virtual Interface { +struct INativeWindow : public virtual Interface { // Return if the window is still valid, that is, hasn't been closed or // destroyed. virtual bool IsValid() = 0; @@ -18,7 +18,7 @@ struct NativeWindow : public virtual Interface { virtual void Close() = 0; - virtual NativeWindow* GetParent() = 0; + virtual INativeWindow* GetParent() = 0; virtual bool IsVisible() = 0; virtual void SetVisible(bool is_visible) = 0; |