use tab page private getter

This commit is contained in:
yggverse 2024-08-27 16:50:17 +03:00
parent f2e4981fdc
commit 47c68deb7a
2 changed files with 28 additions and 25 deletions

View file

@ -7,11 +7,20 @@
namespace app::browser::main
{
namespace tab
{
class Page;
}
class Tab : public Gtk::Notebook
{
const bool REORDERABLE = true;
const bool SCROLLABLE = true;
tab::Page * get_tab_page(
const int & PAGE_NUMBER
);
public:
Tab();