summaryrefslogtreecommitdiff
path: root/Servers/WindowServer/WSMenuBar.cpp
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-03-20 04:34:14 +0100
committerAndreas Kling <awesomekling@gmail.com>2019-03-20 04:34:14 +0100
commitd17a91f1851e8f0b3a3353d677ad8d1f51e921b7 (patch)
tree30316253f23ab99c106832deeb6c7d36adab27fc /Servers/WindowServer/WSMenuBar.cpp
parent9120b05a4044b346be397b0ae5b9b7e9a8cbd0b1 (diff)
downloadserenity-d17a91f1851e8f0b3a3353d677ad8d1f51e921b7.zip
Move WindowServer into Servers.
Diffstat (limited to 'Servers/WindowServer/WSMenuBar.cpp')
-rw-r--r--Servers/WindowServer/WSMenuBar.cpp14
1 files changed, 14 insertions, 0 deletions
diff --git a/Servers/WindowServer/WSMenuBar.cpp b/Servers/WindowServer/WSMenuBar.cpp
new file mode 100644
index 0000000000..6d642d160d
--- /dev/null
+++ b/Servers/WindowServer/WSMenuBar.cpp
@@ -0,0 +1,14 @@
+#include "WSMenuBar.h"
+#include "WSMenu.h"
+#include "WSMenuItem.h"
+
+WSMenuBar::WSMenuBar(WSClientConnection& client, int menubar_id)
+ : m_client(client)
+ , m_menubar_id(menubar_id)
+{
+}
+
+WSMenuBar::~WSMenuBar()
+{
+}
+