draft history buttons group

This commit is contained in:
yggverse 2024-08-13 09:47:59 +03:00
parent fb54cc4431
commit 17224ebaaa
10 changed files with 145 additions and 0 deletions

View file

@ -0,0 +1,22 @@
#include "history.hpp"
#include "history/back.hpp"
#include "history/forward.hpp"
using namespace app::browser::main::tab::data::navbar;
History::History()
{
back = new history::Back();
append(
* back
);
forward = new history::Forward();
append(
* forward
);
}
History::~History() = default;