]> Shamusworld >> Repos - architektonas/blob - src/actions/actionlayerstogglelock.h
Removed unnecessary RS_ prefix from classes and whatnot.
[architektonas] / src / actions / actionlayerstogglelock.h
1 #ifndef __ACTIONLAYERSTOGGLELOCK_H__
2 #define __ACTIONLAYERSTOGGLELOCK_H__
3
4 #include "actioninterface.h"
5
6 /**
7  * This action class can handle user events to edit layers.
8  *
9  * @author James Hammons
10  * @author Andrew Mustun
11  */
12 class ActionLayersToggleLock: public ActionInterface
13 {
14         public:
15                 ActionLayersToggleLock(EntityContainer & container, GraphicView & graphicView);
16                 ~ActionLayersToggleLock();
17
18                 virtual void init(int status = 0);
19                 virtual void trigger();
20 };
21
22 #endif  // __ACTIONLAYERSTOGGLELOCK_H__