init tab data content class

This commit is contained in:
yggverse 2024-08-13 11:18:04 +03:00
parent 86f4313a1d
commit 9cce6ffcdf
4 changed files with 36 additions and 0 deletions

View file

@ -0,0 +1,16 @@
#include "content.hpp"
using namespace app::browser::main::tab::data;
Content::Content()
{
set_orientation(
Gtk::Orientation::VERTICAL
);
set_homogeneous(
true
);
}
Content::~Content() = default;