mirror of
https://github.com/YGGverse/Yoda.git
synced 2026-03-31 16:45:27 +00:00
21 lines
No EOL
442 B
C++
21 lines
No EOL
442 B
C++
#ifndef APP_BROWSER_MAIN_TAB_PAGE_NAVIGATION_BASE_HPP
|
|
#define APP_BROWSER_MAIN_TAB_PAGE_NAVIGATION_BASE_HPP
|
|
|
|
#include <glibmm/i18n.h>
|
|
#include <gtkmm/button.h>
|
|
|
|
namespace app::browser::main::tab::page::navigation
|
|
{
|
|
class Base : public Gtk::Button
|
|
{
|
|
public:
|
|
|
|
Base();
|
|
|
|
void update(
|
|
const Glib::ustring & URI
|
|
);
|
|
};
|
|
}
|
|
|
|
#endif // APP_BROWSER_MAIN_TAB_PAGE_NAVIGATION_BASE_HPP
|