init request entry class

This commit is contained in:
yggverse 2024-08-13 09:59:58 +03:00
parent d1a08ce8de
commit 86f4313a1d
6 changed files with 46 additions and 0 deletions

View file

@ -0,0 +1,19 @@
#ifndef APP_BROWSER_MAIN_TAB_DATA_NAVBAR_REQUEST_HPP
#define APP_BROWSER_MAIN_TAB_DATA_NAVBAR_REQUEST_HPP
#include <glibmm/i18n.h>
#include <gtkmm/entry.h>
namespace app::browser::main::tab::data::navbar
{
class Request : public Gtk::Entry
{
public:
Request();
~Request();
};
}
#endif // APP_BROWSER_MAIN_TAB_DATA_NAVBAR_REQUEST_HPP