draft children components save action delegation

This commit is contained in:
yggverse 2024-09-10 20:50:31 +03:00
parent 7e8aaef1c5
commit b1f2a1b893
7 changed files with 32 additions and 2 deletions

View file

@ -78,6 +78,11 @@ void Request::refresh(
);
}
int Request::save()
{
return 1; // @TODO SQL
}
void Request::parse()
{
auto match = Glib::Regex::split_simple(

View file

@ -46,6 +46,8 @@ namespace app::browser::main::tab::page::navigation
const double & PROGRESS_FRACTION
);
int save();
// Getters
Glib::ustring get_scheme();
Glib::ustring get_host();