2019-02-11 06:47:10 -02:00
|
|
|
#include "WSMenuItem.h"
|
|
|
|
|
|
2019-02-11 07:55:02 -02:00
|
|
|
WSMenuItem::WSMenuItem(unsigned identifier, const String& text)
|
2019-02-11 06:47:10 -02:00
|
|
|
: m_type(Text)
|
2019-02-11 07:55:02 -02:00
|
|
|
, m_identifier(identifier)
|
2019-02-11 06:47:10 -02:00
|
|
|
, m_text(text)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
WSMenuItem::WSMenuItem(Type type)
|
|
|
|
|
: m_type(type)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
WSMenuItem::~WSMenuItem()
|
|
|
|
|
{
|
|
|
|
|
}
|