]> Shamusworld >> Repos - architektonas/blobdiff - src/actions/actiondrawlinepolygon2.h
In the middle of major refactoring...
[architektonas] / src / actions / actiondrawlinepolygon2.h
similarity index 75%
rename from src/actions/rs_actiondrawlinepolygon2.h
rename to src/actions/actiondrawlinepolygon2.h
index 243a56f027dc845acfd133740312c67341c8fb5f..8355f1b43d239469c5c01282a1ca31281e7767ea 100644 (file)
@@ -1,15 +1,16 @@
-#ifndef RS_ACTIONDRAWLINEPOLYGON2_H
-#define RS_ACTIONDRAWLINEPOLYGON2_H
+#ifndef __ACTIONDRAWLINEPOLYGON2_H__
+#define __ACTIONDRAWLINEPOLYGON2_H__
 
-#include "rs_previewactioninterface.h"
+#include "actioninterface.h"
 #include "vector.h"
 
 /**
  * This action class can handle user events to draw polygons.
  *
+ * @author James Hammons
  * @author Andrew Mustun
  */
-class RS_ActionDrawLinePolygon2: public RS_PreviewActionInterface
+class ActionDrawLinePolygon2: public ActionInterface
 {
        private:
                enum Status {
@@ -19,8 +20,8 @@ class RS_ActionDrawLinePolygon2: public RS_PreviewActionInterface
                };
 
        public:
-               RS_ActionDrawLinePolygon2(RS_EntityContainer & container, GraphicView & graphicView);
-               ~RS_ActionDrawLinePolygon2();
+               ActionDrawLinePolygon2(RS_EntityContainer & container, GraphicView & graphicView);
+               ~ActionDrawLinePolygon2();
 
                virtual RS2::ActionType rtti();
                virtual void trigger();
@@ -48,4 +49,4 @@ class RS_ActionDrawLinePolygon2: public RS_PreviewActionInterface
                Status lastStatus;
 };
 
-#endif
+#endif // __ACTIONDRAWLINEPOLYGON2_H__