1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2026-01-16 16:41:01 +00:00
serenity/LibGUI/GMenuBar.cpp
2019-02-11 15:37:12 +01:00

22 lines
307 B
C++

#include <LibGUI/GMenuBar.h>
GMenuBar::GMenuBar()
{
}
GMenuBar::~GMenuBar()
{
}
void GMenuBar::add_menu(OwnPtr<GMenu>&& menu)
{
m_menus.append(move(menu));
}
void GMenuBar::notify_added_to_application(Badge<GApplication>)
{
}
void GMenuBar::notify_removed_from_application(Badge<GApplication>)
{
}