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