mirror of https://github.com/YGGverse/Yoda.git
yggverse
3 months ago
4 changed files with 36 additions and 0 deletions
@ -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; |
@ -0,0 +1,18 @@ |
|||||||
|
#ifndef APP_BROWSER_MAIN_TAB_DATA_CONTENT_HPP |
||||||
|
#define APP_BROWSER_MAIN_TAB_DATA_CONTENT_HPP |
||||||
|
|
||||||
|
#include <gtkmm/box.h> |
||||||
|
|
||||||
|
namespace app::browser::main::tab::data |
||||||
|
{ |
||||||
|
class Content : public Gtk::Box |
||||||
|
{ |
||||||
|
public: |
||||||
|
|
||||||
|
Content(); |
||||||
|
|
||||||
|
~Content(); |
||||||
|
}; |
||||||
|
} |
||||||
|
|
||||||
|
#endif // APP_BROWSER_MAIN_TAB_DATA_CONTENT_HPP
|
Loading…
Reference in new issue