]> Shamusworld >> Repos - architektonas/blobdiff - src/actions/actionsnapintersectionmanual.h
In the middle of major refactoring...
[architektonas] / src / actions / actionsnapintersectionmanual.h
similarity index 64%
rename from src/actions/rs_actionsnapintersectionmanual.h
rename to src/actions/actionsnapintersectionmanual.h
index 10e6b3f1973e2e2a70d6c37fa17666421f0b8946..b119c50614604e67085590938cbdc4cef475a3e1 100644 (file)
@@ -1,7 +1,7 @@
-#ifndef RS_ACTIONSNAPINTERSECTIONMANUAL_H
-#define RS_ACTIONSNAPINTERSECTIONMANUAL_H
+#ifndef __ACTIONSNAPINTERSECTIONMANUAL_H__
+#define __ACTIONSNAPINTERSECTIONMANUAL_H__
 
-#include "rs_previewactioninterface.h"
+#include "actioninterface.h"
 #include "vector.h"
 
 class RS_Entity;
@@ -9,9 +9,10 @@ class RS_Entity;
 /**
  * This action class can handle user events to trim entities.
  *
+ * @author James Hammons
  * @author Andrew Mustun
  */
-class RS_ActionSnapIntersectionManual: public RS_PreviewActionInterface
+class ActionSnapIntersectionManual: public ActionInterface
 {
        public:
                /**
@@ -23,8 +24,8 @@ class RS_ActionSnapIntersectionManual: public RS_PreviewActionInterface
                };
 
        public:
-               RS_ActionSnapIntersectionManual(RS_EntityContainer & container, GraphicView & graphicView);
-               ~RS_ActionSnapIntersectionManual();
+               ActionSnapIntersectionManual(RS_EntityContainer & container, GraphicView & graphicView);
+               ~ActionSnapIntersectionManual();
 
                virtual void init(int status = 0);
                virtual void trigger();
@@ -40,4 +41,4 @@ class RS_ActionSnapIntersectionManual: public RS_PreviewActionInterface
                Vector coord;
 };
 
-#endif
+#endif // __ACTIONSNAPINTERSECTIONMANUAL_H__