]> Shamusworld >> Repos - architektonas/blob - rs_commandevent.h
d766588ade3b861f29428f8684fef4cf49bd96e1
[architektonas] / rs_commandevent.h
1 #ifndef RS_COMMANDEVENT_H
2 #define RS_COMMANDEVENT_H
3
4 #include <QtCore>
5
6 /**
7  * Command Events.
8  */
9 class RS_CommandEvent
10 {
11         public:
12                 RS_CommandEvent(const QString & cmd);
13
14                 QString getCommand();
15                 void accept();
16                 bool isAccepted();
17
18         protected:
19                 QString cmd;
20                 bool accepted;
21 };
22
23 #endif