mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-11-08 09:11:01 +00:00
14 lines
162 B
C
14 lines
162 B
C
|
|
#pragma once
|
||
|
|
|
||
|
|
#include <LibGUI/GMenu.h>
|
||
|
|
#include <AK/Vector.h>
|
||
|
|
|
||
|
|
class GMenuBar {
|
||
|
|
public:
|
||
|
|
GMenuBar();
|
||
|
|
~GMenuBar();
|
||
|
|
|
||
|
|
private:
|
||
|
|
Vector<GMenu> m_menus;
|
||
|
|
};
|