init header title class

This commit is contained in:
yggverse 2024-08-05 06:09:52 +03:00
parent f6e855e4b2
commit c8b7bef23c
3 changed files with 64 additions and 0 deletions

View file

@ -0,0 +1,36 @@
#ifndef APP_BROWSER_HEADER_TITLE_H
#define APP_BROWSER_HEADER_TITLE_H
// Dependencies
#include "../header.h"
namespace app
{
namespace browser
{
class Header;
namespace header
{
class Title
{
public:
// GTK
GtkWidget *gtk;
// Defaults
const gint SPACING = 0;
// Dependencies
Header *header;
Title(
Header *header
);
};
}
};
};
#endif