]> Shamusworld >> Repos - architektonas/blobdiff - src/actions/actiondrawlinefree.h
In the middle of major refactoring...
[architektonas] / src / actions / actiondrawlinefree.h
similarity index 61%
rename from src/actions/rs_actiondrawlinefree.h
rename to src/actions/actiondrawlinefree.h
index 97c781c16f07fcfba75bb3535acdd0266b4e0c19..2aabde6422a3edeac750e856cbc0c0d8fa64f96f 100644 (file)
@@ -1,7 +1,7 @@
-#ifndef RS_ACTIONDRAWLINEFREE_H
-#define RS_ACTIONDRAWLINEFREE_H
+#ifndef __ACTIONDRAWLINEFREE_H__
+#define __ACTIONDRAWLINEFREE_H__
 
-#include "rs_actioninterface.h"
+#include "actioninterface.h"
 #include "vector.h"
 
 class RS_Polyline;
@@ -9,13 +9,14 @@ class RS_Polyline;
 /**
  * This action class can handle user events to draw freehand lines.
  *
+ * @author James Hammons
  * @author Andrew Mustun
  */
-class RS_ActionDrawLineFree: public RS_ActionInterface
+class ActionDrawLineFree: public ActionInterface
 {
        public:
-               RS_ActionDrawLineFree(RS_EntityContainer & container, GraphicView & graphicView);
-               ~RS_ActionDrawLineFree();
+               ActionDrawLineFree(RS_EntityContainer & container, GraphicView & graphicView);
+               ~ActionDrawLineFree();
 
                virtual void trigger();
                virtual void mouseMoveEvent(QMouseEvent * e);
@@ -30,4 +31,4 @@ class RS_ActionDrawLineFree: public RS_ActionInterface
                RS_Polyline * polyline;
 };
 
-#endif
+#endif // __ACTIONDRAWLINEFREE_H__