summaryrefslogtreecommitdiff
path: root/WindowServer/WSMenuItem.cpp
blob: b0f2e3e03a371063069cc8a0c873a379ae569fca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include "WSMenuItem.h"

WSMenuItem::WSMenuItem(unsigned identifier, const String& text)
    : m_type(Text)
    , m_identifier(identifier)
    , m_text(text)
{
}

WSMenuItem::WSMenuItem(Type type)
    : m_type(type)
{
}

WSMenuItem::~WSMenuItem()
{
}