Yoda/src/app/browser/header.cpp

20 lines
294 B
C++
Raw Normal View History

#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()
);
}