]> Shamusworld >> Repos - architektonas/blobdiff - src/actions/actionmodifyround.h
In the middle of major refactoring...
[architektonas] / src / actions / actionmodifyround.h
similarity index 79%
rename from src/actions/rs_actionmodifyround.h
rename to src/actions/actionmodifyround.h
index 27efe84079acc84bf3344bdeaf5e762fedc16037..fab4beda749d84d417b99b95f66773e73ea0f9fd 100644 (file)
@@ -1,8 +1,8 @@
-#ifndef RS_ACTIONMODIFYROUND_H
-#define RS_ACTIONMODIFYROUND_H
+#ifndef __ACTIONMODIFYROUND_H__
+#define __ACTIONMODIFYROUND_H__
 
 #include "rs_modification.h"
-#include "rs_previewactioninterface.h"
+#include "actioninterface.h"
 #include "vector.h"
 
 class RS_Entity;
@@ -10,9 +10,10 @@ class RS_Entity;
 /**
  * This action class can handle user events to round corners.
  *
+ * @author James Hammons
  * @author Andrew Mustun
  */
-class RS_ActionModifyRound: public RS_PreviewActionInterface
+class ActionModifyRound: public ActionInterface
 {
        public:
                /**
@@ -26,8 +27,8 @@ class RS_ActionModifyRound: public RS_PreviewActionInterface
                };
 
        public:
-               RS_ActionModifyRound(RS_EntityContainer & container, GraphicView & graphicView);
-               ~RS_ActionModifyRound();
+               ActionModifyRound(RS_EntityContainer & container, GraphicView & graphicView);
+               ~ActionModifyRound();
 
                virtual RS2::ActionType rtti();
                virtual void init(int status = 0);
@@ -56,4 +57,4 @@ class RS_ActionModifyRound: public RS_PreviewActionInterface
                Status lastStatus;
 };
 
-#endif
+#endif // __ACTIONMODIFYROUND_H__