mirror of
https://github.com/YGGverse/Yoda.git
synced 2025-01-16 09:40:01 +00:00
24 lines
310 B
C++
24 lines
310 B
C++
|
#include "main.hpp"
|
||
|
#include "main/title.hpp"
|
||
|
|
||
|
using namespace app::browser::header;
|
||
|
|
||
|
Main::Main()
|
||
|
{
|
||
|
// Init container
|
||
|
set_orientation(
|
||
|
Gtk::Orientation::VERTICAL
|
||
|
);
|
||
|
|
||
|
// Init title
|
||
|
title = new main::Title();
|
||
|
|
||
|
append(
|
||
|
* title
|
||
|
);
|
||
|
}
|
||
|
|
||
|
Main::~Main()
|
||
|
{
|
||
|
delete title;
|
||
|
}
|