mirror of
https://github.com/YGGverse/Yoda.git
synced 2025-01-16 01:29:57 +00:00
20 lines
294 B
C++
20 lines
294 B
C++
|
#include "header.hpp"
|
||
|
#include "header/menu.hpp"
|
||
|
#include "header/tab.hpp"
|
||
|
|
||
|
using namespace app::browser;
|
||
|
|
||
|
Header::Header()
|
||
|
{
|
||
|
set_show_title_buttons(
|
||
|
SHOW_TITLE_BUTTONS
|
||
|
);
|
||
|
|
||
|
pack_start(
|
||
|
* new header::Menu()
|
||
|
);
|
||
|
|
||
|
pack_start(
|
||
|
* new header::Tab()
|
||
|
);
|
||
|
}
|