1 #ifndef __ACTIONSETSNAPMODE_H__
2 #define __ACTIONSETSNAPMODE_H__
5 #include "actioninterface.h"
8 * This action changes the current snap mode.
10 * @author James Hammons
11 * @author Andrew Mustun
13 class ActionSetSnapMode: public ActionInterface
16 ActionSetSnapMode(EntityContainer & container, GraphicView & graphicView, RS2::SnapMode snapMode);
19 virtual void init(int status = 0);
20 virtual void trigger();
23 RS2::SnapMode snapMode;
26 #endif // __ACTIONSETSNAPMODE_H__