BillySheet/include/gui_data.hpp

22 lines
320 B
C++
Raw Normal View History

#ifndef BILLYSHEET_GUI_DATA_HPP
#define BILLYSHEET_GUI_DATA_HPP
2022-01-08 23:40:31 +01:00
#include "window.hpp"
namespace gui {
class GuiData final {
private:
2022-01-08 23:40:31 +01:00
Window &window;
public:
GuiData() = delete;
2022-01-08 23:40:31 +01:00
explicit GuiData(Window &wwindow) : window(wwindow) {}
~GuiData() noexcept = default;
};
}
#endif //BILLYSHEET_GUI_DATA_HPP