]> Shamusworld >> Repos - architektonas/blobdiff - src/actions/actiondrawcircle3p.h
In the middle of major refactoring...
[architektonas] / src / actions / actiondrawcircle3p.h
similarity index 71%
rename from src/actions/rs_actiondrawcircle3p.h
rename to src/actions/actiondrawcircle3p.h
index a00e04b87c3fd3f62e8367285980b9be057ed663..d2d64b47e6a77999ae42970f6a3e73c8910c1230 100644 (file)
@@ -1,17 +1,18 @@
-#ifndef RS_ACTIONDRAWCIRCLE3P_H
-#define RS_ACTIONDRAWCIRCLE3P_H
+#ifndef __ACTIONDRAWCIRCLE3P_H__
+#define __ACTIONDRAWCIRCLE3P_H__
 
 #include "rs_circle.h"
-#include "rs_previewactioninterface.h"
+#include "actioninterface.h"
 #include "vector.h"
 
 /**
- * This action class can handle user events to draw
- * circles with three points given.
+ * This action class can handle user events to draw circles with three points
+ * given.
  *
+ * @author James Hammons
  * @author Andrew Mustun
  */
-class RS_ActionDrawCircle3P: public RS_PreviewActionInterface
+class ActionDrawCircle3P: public ActionInterface
 {
        public:
                /**
@@ -24,8 +25,8 @@ class RS_ActionDrawCircle3P: public RS_PreviewActionInterface
                };
 
        public:
-               RS_ActionDrawCircle3P(RS_EntityContainer & container, GraphicView & graphicView);
-               ~RS_ActionDrawCircle3P();
+               ActionDrawCircle3P(RS_EntityContainer & container, GraphicView & graphicView);
+               ~ActionDrawCircle3P();
 
                void reset();
                virtual void init(int status = 0);
@@ -59,4 +60,4 @@ class RS_ActionDrawCircle3P: public RS_PreviewActionInterface
                Vector point3;
 };
 
-#endif
+#endif // __ACTIONDRAWCIRCLE3P_H__