Menu bar is coming

This commit is contained in:
Pcornat 2022-01-11 22:33:40 +01:00
parent 45c92db758
commit 58a16c68e4
Signed by: Pcornat
GPG key ID: 2F3932FF46D9ECA0
3 changed files with 38 additions and 0 deletions

23
include/gui/menu.hpp Normal file
View file

@ -0,0 +1,23 @@
#ifndef BILLYSHEET_MENU_HPP
#define BILLYSHEET_MENU_HPP
namespace gui {
class GuiData;
class Menu final {
private:
GuiData &data;
public:
Menu() noexcept = delete;
explicit Menu(GuiData &data) noexcept: data(data) {}
~Menu() noexcept = default;
void gui() const noexcept;
};
}
#endif //BILLYSHEET_MENU_HPP