mirror of
https://github.com/YGGverse/Yoda.git
synced 2026-04-01 17:15:28 +00:00
draft history buttons group
This commit is contained in:
parent
fb54cc4431
commit
17224ebaaa
10 changed files with 145 additions and 0 deletions
22
src/app/browser/main/tab/data/navbar/history.cpp
Normal file
22
src/app/browser/main/tab/data/navbar/history.cpp
Normal 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;
|
||||
Loading…
Add table
Add a link
Reference in a new issue