File indexing completed on 2024-05-05 05:40:26

0001 #include "data/diceshortcut.h"
0002 
0003 DiceShortCut::DiceShortCut() {}
0004 QString DiceShortCut::text() const
0005 {
0006     return m_text;
0007 }
0008 
0009 void DiceShortCut::setText(const QString& text)
0010 {
0011     m_text= text;
0012 }
0013 
0014 QString DiceShortCut::command() const
0015 {
0016     return m_command;
0017 }
0018 
0019 void DiceShortCut::setCommand(const QString& command)
0020 {
0021     m_command= command;
0022 }
0023 
0024 bool DiceShortCut::alias() const
0025 {
0026     return m_alias;
0027 }
0028 
0029 void DiceShortCut::setAlias(bool alias)
0030 {
0031     m_alias= alias;
0032 }