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

37
src/app/browser.h Normal file
View file

@ -0,0 +1,37 @@
#ifndef APP_BROWSER_H
#define APP_BROWSER_H
// Dependencies
#include "../main.h"
// Requirements
#include "browser/header.h"
namespace app
{
namespace browser
{
class Header;
}
class Browser
{
public:
// GTK
GtkWidget *gtk;
// Defaults
const guint WIDTH = 640;
const guint HEIGHT = 480;
// Requirements
browser::Header *header;
Browser(
GtkApplication *application
);
};
};
#endif