2022-01-08 21:57:17 +01:00
|
|
|
#ifndef BILLYSHEET_GUI_DATA_HPP
|
|
|
|
#define BILLYSHEET_GUI_DATA_HPP
|
|
|
|
|
2022-01-08 23:40:31 +01:00
|
|
|
|
2022-01-08 21:57:17 +01:00
|
|
|
namespace gui {
|
2022-01-09 00:43:33 +01:00
|
|
|
class Window;
|
|
|
|
|
2022-01-08 21:57:17 +01:00
|
|
|
class GuiData final {
|
|
|
|
private:
|
2022-01-08 23:40:31 +01:00
|
|
|
Window &window;
|
2022-01-08 21:57:17 +01:00
|
|
|
|
|
|
|
public:
|
|
|
|
GuiData() = delete;
|
2022-01-08 23:40:31 +01:00
|
|
|
|
|
|
|
explicit GuiData(Window &wwindow) : window(wwindow) {}
|
|
|
|
|
2022-01-09 00:43:33 +01:00
|
|
|
[[nodiscard]] Window &get_window() const;
|
|
|
|
|
2022-01-08 21:57:17 +01:00
|
|
|
~GuiData() noexcept = default;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#endif //BILLYSHEET_GUI_DATA_HPP
|