mirror of
https://github.com/YGGverse/Yoda.git
synced 2026-04-01 09:05:27 +00:00
23 lines
No EOL
434 B
C++
23 lines
No EOL
434 B
C++
#ifndef APP_BROWSER_MAIN_TAB_PAGE_CONTENT_HPP
|
|
#define APP_BROWSER_MAIN_TAB_PAGE_CONTENT_HPP
|
|
|
|
#include <gtkmm/box.h>
|
|
#include <glibmm/ustring.h>
|
|
|
|
namespace app::browser::main::tab::page
|
|
{
|
|
class Content : public Gtk::Box
|
|
{
|
|
public:
|
|
|
|
Content();
|
|
|
|
~Content();
|
|
|
|
void set(
|
|
const Glib::ustring & buffer
|
|
);
|
|
};
|
|
}
|
|
|
|
#endif // APP_BROWSER_MAIN_TAB_PAGE_CONTENT_HPP
|