]> Shamusworld >> Repos - architektonas/blobdiff - src/actions/actiondrawarc3p.h
In the middle of major refactoring...
[architektonas] / src / actions / actiondrawarc3p.h
similarity index 78%
rename from src/actions/rs_actiondrawarc3p.h
rename to src/actions/actiondrawarc3p.h
index 54026318f7012e2cafec5fcc6b3d341e642591dd..ffca07fa3d8bd7aa4eb31d5ab4662c96ecbe4780 100644 (file)
@@ -1,17 +1,18 @@
-#ifndef RS_ACTIONDRAWARC3P_H
-#define RS_ACTIONDRAWARC3P_H
+#ifndef __ACTIONDRAWARC3P_H__
+#define __ACTIONDRAWARC3P_H__
 
 #include "rs_arc.h"
-#include "rs_previewactioninterface.h"
+#include "actioninterface.h"
 #include "vector.h"
 
 /**
  * This action class can handle user events to draw
  * arcs with three points given.
  *
+ * @author James Hammons
  * @author Andrew Mustun
  */
-class RS_ActionDrawArc3P: public RS_PreviewActionInterface
+class ActionDrawArc3P: public ActionInterface
 {
        public:
                /**
@@ -24,8 +25,8 @@ class RS_ActionDrawArc3P: public RS_PreviewActionInterface
                };
 
        public:
-               RS_ActionDrawArc3P(RS_EntityContainer & container, GraphicView & graphicView);
-               ~RS_ActionDrawArc3P();
+               ActionDrawArc3P(RS_EntityContainer & container, GraphicView & graphicView);
+               ~ActionDrawArc3P();
 
                void reset();
                virtual void init(int status = 0);
@@ -59,4 +60,4 @@ class RS_ActionDrawArc3P: public RS_PreviewActionInterface
                Vector point3;
 };
 
-#endif
+#endif // __ACTIONDRAWARC3P_H__