update namespace model

This commit is contained in:
yggverse 2024-08-05 03:15:41 +03:00
parent 521d372b40
commit 47bd3b5b8b
10 changed files with 116 additions and 81 deletions

27
src/app/browser/header.h Normal file
View file

@ -0,0 +1,27 @@
#ifndef APP_BROWSER_HEADER_H
#define APP_BROWSER_HEADER_H
#include "../browser.h"
namespace app
{
class Browser;
namespace browser
{
class Header
{
public:
GtkWidget *gtk;
const gboolean SHOW_TITLE_BUTTONS = true;
Header(
Browser *browser
);
};
};
};
#endif