mirror of
https://github.com/YGGverse/Yoda.git
synced 2025-03-13 06:01:21 +00:00
18 lines
284 B
C++
18 lines
284 B
C++
![]() |
#ifndef APP_BROWSER_MAIN_TAB_DATA_HPP
|
||
|
#define APP_BROWSER_MAIN_TAB_DATA_HPP
|
||
|
|
||
|
#include <gtkmm/box.h>
|
||
|
|
||
|
namespace app::browser::main::tab
|
||
|
{
|
||
|
class Data : public Gtk::Box
|
||
|
{
|
||
|
public:
|
||
|
|
||
|
Data();
|
||
|
|
||
|
~Data();
|
||
|
};
|
||
|
}
|
||
|
|
||
|
#endif // APP_BROWSER_MAIN_TAB_DATA_HPP
|