]> Shamusworld >> Repos - architektonas/blob - src/base/rs_commandevent.h
Changed RS_Graphic to Drawing; this is less confusing as a drawing is
[architektonas] / src / base / rs_commandevent.h
1 #ifndef RS_COMMANDEVENT_H
2 #define RS_COMMANDEVENT_H
3
4 /**
5  * Command Events.
6  */
7 class RS_CommandEvent
8 {
9         public:
10                 RS_CommandEvent(const QString & cmd);
11
12                 QString getCommand();
13                 void accept();
14                 bool isAccepted();
15
16         protected:
17                 QString cmd;
18                 bool accepted;
19 };
20
21 #endif