implement set_title method

This commit is contained in:
yggverse 2024-08-20 15:25:31 +03:00
parent 233471c22b
commit 98a572a1c0
4 changed files with 27 additions and 1 deletions

View file

@ -1,6 +1,7 @@
#ifndef APP_BROWSER_HEADER_MAIN_HPP
#define APP_BROWSER_HEADER_MAIN_HPP
#include <glibmm/ustring.h>
#include <gtkmm/box.h>
namespace app::browser::header
@ -19,6 +20,10 @@ namespace app::browser::header
Main();
~Main();
void set_title(
const Glib::ustring text
);
};
}