mirror of
https://github.com/YGGverse/Yoda.git
synced 2026-04-01 00:55:28 +00:00
implement destructors
This commit is contained in:
parent
ee890b9859
commit
a8df7e1ebe
12 changed files with 92 additions and 9 deletions
|
|
@ -5,13 +5,26 @@
|
|||
|
||||
namespace app::browser
|
||||
{
|
||||
namespace header
|
||||
{
|
||||
class Menu;
|
||||
class Tab;
|
||||
}
|
||||
|
||||
class Header : public Gtk::HeaderBar
|
||||
{
|
||||
private:
|
||||
|
||||
app::browser::header::Menu * menu;
|
||||
app::browser::header::Tab * tab;
|
||||
|
||||
public:
|
||||
|
||||
const bool SHOW_TITLE_BUTTONS = true;
|
||||
|
||||
Header();
|
||||
|
||||
~Header();
|
||||
};
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue