mirror of
https://github.com/YGGverse/Yoda.git
synced 2025-01-16 01:29:57 +00:00
28 lines
331 B
C++
28 lines
331 B
C++
|
#include "main.hpp"
|
||
|
#include "main/tab.hpp"
|
||
|
|
||
|
using namespace app::browser;
|
||
|
|
||
|
Main::Main()
|
||
|
{
|
||
|
// Init container
|
||
|
set_homogeneous(
|
||
|
true
|
||
|
);
|
||
|
|
||
|
// Init tabs
|
||
|
tab = new main::Tab();
|
||
|
|
||
|
append(
|
||
|
* tab
|
||
|
);
|
||
|
}
|
||
|
|
||
|
void Main::tabAppend()
|
||
|
{
|
||
|
tab->append(
|
||
|
nullptr,
|
||
|
true,
|
||
|
true
|
||
|
);
|
||
|
};
|