mirror of
https://github.com/YGGverse/Yoda.git
synced 2025-03-13 06:01:21 +00:00
18 lines
323 B
C++
18 lines
323 B
C++
#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
|