]> Shamusworld >> Repos - architektonas/blob - actionlayersremove.h
b48779aeed9c7e73c7f3ca9be4b95959e64ad49b
[architektonas] / actionlayersremove.h
1 #ifndef __ACTIONLAYERSREMOVE_H__
2 #define __ACTIONLAYERSREMOVE_H__
3
4 #include "actioninterface.h"
5
6 /**
7  * This action class can handle user events to remove layers.
8  *
9  * @author James Hammons
10  * @author Andrew Mustun
11  */
12 class ActionLayersRemove: public ActionInterface
13 {
14         public:
15                 ActionLayersRemove(RS_EntityContainer & container, GraphicView & graphicView);
16                 ~ActionLayersRemove();
17
18                 virtual void init(int status = 0);
19                 virtual void trigger();
20 };
21
22 #endif  // __ACTIONLAYERSREMOVE_H__