1 #ifndef __ACTIONEDITUNDO_H__
2 #define __ACTIONEDITUNDO_H__
4 #include "actioninterface.h"
7 * This action class can handle user events for undo / redo.
9 * @author James Hammons
10 * @author Andrew Mustun
12 class ActionEditUndo: public ActionInterface
15 ActionEditUndo(bool undo, EntityContainer & container, GraphicView & graphicView);
18 virtual void init(int status = 0);
19 virtual void trigger();
22 /** Undo (true) or redo (false) */
26 #endif // __ACTIONEDITUNDO_H__