]> Shamusworld >> Repos - architektonas/blobdiff - src/actions/actiondrawarc.h
In the middle of major refactoring...
[architektonas] / src / actions / actiondrawarc.h
similarity index 73%
rename from src/actions/rs_actiondrawarc.h
rename to src/actions/actiondrawarc.h
index 90fec85d52f96351a74c0c5da956f3618d802b44..a834a3a267f62b44ac2cac0b0a28901cfac6e0df 100644 (file)
@@ -1,16 +1,17 @@
-#ifndef RS_ACTIONDRAWARC_H
-#define RS_ACTIONDRAWARC_H
+#ifndef __ACTIONDRAWARC_H__
+#define __ACTIONDRAWARC_H__
 
-#include "rs_previewactioninterface.h"
+#include "actioninterface.h"
 #include "rs_arc.h"
 
 /**
- * This action class can handle user events to draw
- * simple arcs with the center, radius, start- and endangle given.
+ * This action class can handle user events to draw simple arcs with the
+ * center, radius, start- and endangle given.
  *
+ * @author James Hammons
  * @author Andrew Mustun
  */
-class RS_ActionDrawArc: public RS_PreviewActionInterface
+class ActionDrawArc: public ActionInterface
 {
        public:
                /**
@@ -26,8 +27,8 @@ class RS_ActionDrawArc: public RS_PreviewActionInterface
                };
 
        public:
-               RS_ActionDrawArc(RS_EntityContainer & container, GraphicView & graphicView);
-               ~RS_ActionDrawArc();
+               ActionDrawArc(RS_EntityContainer & container, GraphicView & graphicView);
+               ~ActionDrawArc();
 
                virtual RS2::ActionType rtti();
                void reset();
@@ -53,4 +54,4 @@ class RS_ActionDrawArc: public RS_PreviewActionInterface
                RS_ArcData data;
 };
 
-#endif
+#endif // __ACTIONDRAWARC_H__