]> Shamusworld >> Repos - architektonas/blobdiff - src/actions/actiondimension.h
In the middle of major refactoring...
[architektonas] / src / actions / actiondimension.h
similarity index 72%
rename from src/actions/rs_actiondimension.h
rename to src/actions/actiondimension.h
index 910bfc0a7a491ae5602b5aed26e5167ed54ddf9d..e8f3b9d1faa71a8412b99f44e3ccb95b7a4053b8 100644 (file)
@@ -1,20 +1,21 @@
-#ifndef RS_ACTIONDIMENSION_H
-#define RS_ACTIONDIMENSION_H
+#ifndef __ACTIONDIMENSION_H__
+#define __ACTIONDIMENSION_H__
 
 #include <QtCore>
 #include "rs_dimension.h"
-#include "rs_previewactioninterface.h"
+#include "actioninterface.h"
 
 /**
  * Base class for dimension actions.
  *
+ * @author James Hammons
  * @author Andrew Mustun
  */
-class RS_ActionDimension: public RS_PreviewActionInterface
+class ActionDimension: public ActionInterface
 {
        public:
-               RS_ActionDimension(const char * name, RS_EntityContainer & container, GraphicView & graphicView);
-               ~RS_ActionDimension();
+               ActionDimension(const char * name, RS_EntityContainer & container, GraphicView & graphicView);
+               ~ActionDimension();
 
                virtual void reset();
                virtual void init(int status = 0);
@@ -46,4 +47,4 @@ class RS_ActionDimension: public RS_PreviewActionInterface
                bool diameter;
 };
 
-#endif
+#endif // __ACTIONDIMENSION_H__