mirror of
https://github.com/YGGverse/Yoda.git
synced 2026-04-01 00:55:28 +00:00
25 lines
No EOL
330 B
C++
25 lines
No EOL
330 B
C++
#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 |