]> Shamusworld >> Repos - architektonas/blob - src/base/commandevent.h
Initial removal of unnecessary rs_ prefixes from files.
[architektonas] / src / base / commandevent.h
1 #ifndef __COMMANDEVENT_H__
2 #define __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