]> Shamusworld >> Repos - architektonas/blobdiff - src/actions/actionmodifydeletefree.h
In the middle of major refactoring...
[architektonas] / src / actions / actionmodifydeletefree.h
similarity index 56%
rename from src/actions/rs_actionmodifydeletefree.h
rename to src/actions/actionmodifydeletefree.h
index c88c6ee011a7f601827fddd500a2bcec71de742a..694639d5e5d5760a6c239808ad2e8c9301ae2045 100644 (file)
@@ -1,7 +1,7 @@
-#ifndef RS_ACTIONMODIFYDELETEFREE_H
-#define RS_ACTIONMODIFYDELETEFREE_H
+#ifndef __ACTIONMODIFYDELETEFREE_H__
+#define __ACTIONMODIFYDELETEFREE_H__
 
-#include "rs_actioninterface.h"
+#include "actioninterface.h"
 #include "vector.h"
 
 class RS_Entity;
@@ -10,13 +10,14 @@ class RS_Polyline;
 /**
  * This action class can handle user events to delete entities.
  *
+ * @author James Hammons
  * @author Andrew Mustun
  */
-class RS_ActionModifyDeleteFree: public RS_ActionInterface
+class ActionModifyDeleteFree: public ActionInterface
 {
        public:
-               RS_ActionModifyDeleteFree(RS_EntityContainer & container, GraphicView & graphicView);
-               ~RS_ActionModifyDeleteFree();
+               ActionModifyDeleteFree(RS_EntityContainer & container, GraphicView & graphicView);
+               ~ActionModifyDeleteFree();
 
                virtual void init(int status = 0);
                virtual void trigger();
@@ -31,4 +32,4 @@ class RS_ActionModifyDeleteFree: public RS_ActionInterface
                Vector v2;
 };
 
-#endif
+#endif // __ACTIONMODIFYDELETEFREE_H__