init header menu

This commit is contained in:
yggverse 2024-08-05 05:56:45 +03:00
parent d6fc439908
commit f6e855e4b2
5 changed files with 74 additions and 1 deletions

25
src/app/browser/menu.h Normal file
View file

@ -0,0 +1,25 @@
#ifndef APP_BROWSER_MENU_H
#define APP_BROWSER_MENU_H
#include "../menu.h"
namespace app
{
class Browser;
namespace browser
{
class Menu
{
public:
GtkWidget *gtk;
Menu(
Browser *browser
);
};
};
};
#endif