define mem history feature dependencies

This commit is contained in:
yggverse 2024-08-29 02:43:19 +03:00
parent 9a0e9d3f17
commit 4a2b6144f0

View File

@ -1,8 +1,10 @@
#ifndef APP_BROWSER_MAIN_TAB_PAGE_NAVBAR_HISTORY_HPP
#define APP_BROWSER_MAIN_TAB_PAGE_NAVBAR_HISTORY_HPP
#include "glibmm/ustring.h"
#include <glibmm/i18n.h>
#include <gtkmm/box.h>
#include <vector>
namespace app::browser::main::tab::page::navbar
{
@ -14,6 +16,11 @@ namespace app::browser::main::tab::page::navbar
class History : public Gtk::Box
{
// Memory
std::vector<Glib::ustring> history;
std::vector<Glib::ustring>::iterator index;
// Components
history::Back * back;
history::Forward * forward;