implement tabLabel pointer getter

This commit is contained in:
yggverse 2024-08-27 17:03:22 +03:00
parent 7fbf9f07b5
commit a493ed1f95
2 changed files with 35 additions and 24 deletions

View file

@ -9,6 +9,7 @@ namespace app::browser::main
{
namespace tab
{
class Label;
class Page;
}
@ -17,7 +18,11 @@ namespace app::browser::main
const bool REORDERABLE = true;
const bool SCROLLABLE = true;
tab::Page * get_tab_page_ptr(
tab::Label * get_tabLabel_ptr(
const int & PAGE_NUMBER
);
tab::Page * get_tabPage_ptr(
const int & PAGE_NUMBER
);