BillySheet/include/gui/menu/menu.hpp
Pcornat b759836989
Always functional.
Design : the controller controls data of the character sheet and also saving and reading data.
2022-01-17 22:00:26 +01:00

31 lines
461 B
C++

#ifndef BILLYSHEET_MENU_HPP
#define BILLYSHEET_MENU_HPP
#include <spdlog/spdlog.h>
namespace gui {
class GuiData;
namespace menu {
class MenuData;
class Menu final {
private:
MenuData &data;
public:
Menu() noexcept = delete;
explicit Menu(MenuData &data) noexcept;
~Menu() noexcept = default;
void gui() const noexcept;
[[nodiscard]] const MenuData &get_data() const { return data; }
};
}
}
#endif //BILLYSHEET_MENU_HPP