mirror of
https://github.com/YGGverse/Yoda.git
synced 2026-04-01 17:15:28 +00:00
update namespace model
This commit is contained in:
parent
521d372b40
commit
47bd3b5b8b
10 changed files with 116 additions and 81 deletions
37
src/app/browser.h
Normal file
37
src/app/browser.h
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue