WSMenuItem.cpp 251 B

1234567891011121314151617
  1. #include "WSMenuItem.h"
  2. WSMenuItem::WSMenuItem(unsigned identifier, const String& text)
  3. : m_type(Text)
  4. , m_identifier(identifier)
  5. , m_text(text)
  6. {
  7. }
  8. WSMenuItem::WSMenuItem(Type type)
  9. : m_type(type)
  10. {
  11. }
  12. WSMenuItem::~WSMenuItem()
  13. {
  14. }