]> Shamusworld >> Repos - architektonas/blob - src/actions/rs_actionfilesave.h
c5463fdfdd138d60c8fdb43d2f9e73b6ef2aee80
[architektonas] / src / actions / rs_actionfilesave.h
1 #ifndef RS_ACTIONFILESAVE_H
2 #define RS_ACTIONFILESAVE_H
3
4 #include "rs_actioninterface.h"
5
6 /**
7  * This action class can handle user events to save the current file.
8  *
9  * @author Andrew Mustun
10  */
11 class RS_ActionFileSave: public RS_ActionInterface
12 {
13         public:
14                 RS_ActionFileSave(RS_EntityContainer & container, RS_GraphicView & graphicView);
15                 ~RS_ActionFileSave();
16
17                 virtual void init(int status = 0);
18                 virtual void trigger();
19 };
20
21 #endif