]> Shamusworld >> Repos - architektonas/blob - src/base/commandevent.h
Removed unnecessary RS_ prefix from classes and whatnot.
[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 CommandEvent
10 {
11         public:
12                 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