]> Shamusworld >> Repos - architektonas/blobdiff - src/actions/actiondimlinear.h
In the middle of major refactoring...
[architektonas] / src / actions / actiondimlinear.h
similarity index 75%
rename from src/actions/rs_actiondimlinear.h
rename to src/actions/actiondimlinear.h
index 289d2430948a99b8ec64ce455f6d464e46ae6468..60113664c4defd1f917b714933ef95c98263fbb7 100644 (file)
@@ -1,16 +1,16 @@
-#ifndef RS_ACTIONDIMLINEAR_H
-#define RS_ACTIONDIMLINEAR_H
+#ifndef __ACTIONDIMLINEAR_H__
+#define __ACTIONDIMLINEAR_H__
 
-#include "rs_actiondimension.h"
+#include "actiondimension.h"
 #include "rs_dimlinear.h"
 
 /**
- * This action class can handle user events to draw
- * aligned dimensions.
+ * This action class can handle user events to draw aligned dimensions.
  *
+ * @author James Hammons
  * @author Andrew Mustun
  */
-class RS_ActionDimLinear: public RS_ActionDimension
+class ActionDimLinear: public ActionDimension
 {
        public:
                /**
@@ -34,8 +34,8 @@ class RS_ActionDimLinear: public RS_ActionDimension
                };
 
        public:
-               RS_ActionDimLinear(RS_EntityContainer & container, GraphicView & graphicView, double angle = 0.0, bool fixedAngle = false);
-               ~RS_ActionDimLinear();
+               ActionDimLinear(RS_EntityContainer & container, GraphicView & graphicView, double angle = 0.0, bool fixedAngle = false);
+               ~ActionDimLinear();
 
                virtual RS2::ActionType rtti();
                void reset();
@@ -67,4 +67,4 @@ class RS_ActionDimLinear: public RS_ActionDimension
                Status lastStatus;
 };
 
-#endif
+#endif // __ACTIONDIMLINEAR_H__