]> Shamusworld >> Repos - architektonas/blobdiff - src/actions/actiondrawcircle.h
In the middle of major refactoring...
[architektonas] / src / actions / actiondrawcircle.h
similarity index 76%
rename from src/actions/rs_actiondrawcircle.h
rename to src/actions/actiondrawcircle.h
index c5ca1fdd1621c05a567e4c981ad52c1ef8d4a195..763d184c0f8f13b65510f2eae63aab13235c252b 100644 (file)
@@ -1,16 +1,17 @@
-#ifndef RS_ACTIONDRAWCIRCLE_H
-#define RS_ACTIONDRAWCIRCLE_H
+#ifndef __ACTIONDRAWCIRCLE_H__
+#define __ACTIONDRAWCIRCLE_H__
 
 #include "rs_circle.h"
-#include "rs_previewactioninterface.h"
+#include "actioninterface.h"
 
 /**
  * This action class can handle user events to draw
  * circles with a given center and a point on the circle line.
  *
+ * @author James Hammons
  * @author Andrew Mustun
  */
-class RS_ActionDrawCircle: public RS_PreviewActionInterface
+class ActionDrawCircle: public ActionInterface
 {
        public:
                /**
@@ -22,8 +23,8 @@ class RS_ActionDrawCircle: public RS_PreviewActionInterface
                };
 
        public:
-               RS_ActionDrawCircle(RS_EntityContainer & container, GraphicView & graphicView);
-               ~RS_ActionDrawCircle();
+               ActionDrawCircle(RS_EntityContainer & container, GraphicView & graphicView);
+               ~ActionDrawCircle();
 
                virtual RS2::ActionType rtti();
                void reset();
@@ -47,4 +48,4 @@ class RS_ActionDrawCircle: public RS_PreviewActionInterface
                RS_CircleData data;
 };
 
-#endif
+#endif // __ACTIONDRAWCIRCLE_H__