]> Shamusworld >> Repos - architektonas/blob - src/base/rs_commandevent.h
Start of bringing back missing forms/dialogs
[architektonas] / src / base / 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