diff --git a/include/gui/window.hpp b/include/gui/window.hpp index 20542b5..75dc8a7 100644 --- a/include/gui/window.hpp +++ b/include/gui/window.hpp @@ -19,6 +19,8 @@ namespace gui { public: Window(); + Window(Window &&window) noexcept: wwindow(std::move(window.wwindow)) {} + ~Window() noexcept = default; [[nodiscard]] const std::unique_ptr &get_window() const { return wwindow; }