Menu bar is coming
This commit is contained in:
parent
45c92db758
commit
58a16c68e4
3 changed files with 38 additions and 0 deletions
23
include/gui/menu.hpp
Normal file
23
include/gui/menu.hpp
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue