]> Shamusworld >> Repos - architektonas/blobdiff - src/actions/actiondimaligned.h
In the middle of major refactoring...
[architektonas] / src / actions / actiondimaligned.h
similarity index 77%
rename from src/actions/rs_actiondimaligned.h
rename to src/actions/actiondimaligned.h
index b7bf152dbc1a886aa7373e8af115ddff5c865140..731aab1d61c3b4f5acdb122a8d5085625a66884e 100644 (file)
@@ -1,16 +1,17 @@
-#ifndef RS_ACTIONDIMALIGNED_H
-#define RS_ACTIONDIMALIGNED_H
+#ifndef __ACTIONDIMALIGNED_H__
+#define __ACTIONDIMALIGNED_H__
 
-#include "rs_actiondimension.h"
+#include "actiondimension.h"
 #include "rs_dimaligned.h"
 
 /**
  * This action class can handle user events to draw
  * aligned dimensions.
  *
+ * @author James Hammons
  * @author Andrew Mustun
  */
-class RS_ActionDimAligned: public RS_ActionDimension
+class ActionDimAligned: public ActionDimension
 {
        public:
                /**
@@ -24,8 +25,8 @@ class RS_ActionDimAligned: public RS_ActionDimension
                };
 
        public:
-               RS_ActionDimAligned(RS_EntityContainer & container, GraphicView & graphicView);
-               ~RS_ActionDimAligned();
+               ActionDimAligned(RS_EntityContainer & container, GraphicView & graphicView);
+               ~ActionDimAligned();
 
                virtual RS2::ActionType rtti();
                virtual void reset();
@@ -50,4 +51,4 @@ class RS_ActionDimAligned: public RS_ActionDimension
                Status lastStatus;
 };
 
-#endif
+#endif // __ACTIONDIMALIGNED_H__