rename header bar class

This commit is contained in:
yggverse 2024-08-05 06:12:37 +03:00
parent c8b7bef23c
commit 5699735bf0
3 changed files with 6 additions and 6 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 Bar
{
public:
// GTK
GtkWidget *gtk;
// Defaults
const gint SPACING = 0;
// Dependencies
Header *header;
Bar(
Header *header
);
};
}
};
};
#endif