]> Shamusworld >> Repos - architektonas/blobdiff - src/actions/actiondrawhatch.h
In the middle of major refactoring...
[architektonas] / src / actions / actiondrawhatch.h
similarity index 66%
rename from src/actions/rs_actiondrawhatch.h
rename to src/actions/actiondrawhatch.h
index 295456464dfedd426201a96a44f55a5d0df933a8..20c2a0a4cf79861a54a29240e9c665cd371f4a6a 100644 (file)
@@ -1,15 +1,16 @@
-#ifndef RS_ACTIONDRAWHATCH_H
-#define RS_ACTIONDRAWHATCH_H
+#ifndef __ACTIONDRAWHATCH_H__
+#define __ACTIONDRAWHATCH_H__
 
 #include "rs_hatch.h"
-#include "rs_previewactioninterface.h"
+#include "actioninterface.h"
 
 /**
  * This action class can handle user events to draw hatches.
  *
+ * @author James Hammons
  * @author Andrew Mustun
  */
-class RS_ActionDrawHatch: public RS_PreviewActionInterface
+class ActionDrawHatch: public ActionInterface
 {
        public:
                /**
@@ -20,8 +21,8 @@ class RS_ActionDrawHatch: public RS_PreviewActionInterface
                };
 
        public:
-               RS_ActionDrawHatch(RS_EntityContainer & container, GraphicView & graphicView);
-               ~RS_ActionDrawHatch();
+               ActionDrawHatch(RS_EntityContainer & container, GraphicView & graphicView);
+               ~ActionDrawHatch();
 
                virtual void init(int status = 0);
                virtual void trigger();
@@ -36,4 +37,4 @@ class RS_ActionDrawHatch: public RS_PreviewActionInterface
                RS_Hatch * hatch;
 };
 
-#endif
+#endif // __ACTIONDRAWHATCH_H__