]> Shamusworld >> Repos - architektonas/blobdiff - src/actions/actiondrawpoint.h
In the middle of major refactoring...
[architektonas] / src / actions / actiondrawpoint.h
similarity index 64%
rename from src/actions/rs_actiondrawpoint.h
rename to src/actions/actiondrawpoint.h
index e7efb203c6b80f5fb5d22685f553db0735358669..7e2aa59b857d0186603177f070fbd0746e27cec1 100644 (file)
@@ -1,19 +1,20 @@
-#ifndef RS_ACTIONDRAWPOINT_H
-#define RS_ACTIONDRAWPOINT_H
+#ifndef __ACTIONDRAWPOINT_H__
+#define __ACTIONDRAWPOINT_H__
 
-#include "rs_previewactioninterface.h"
+#include "actioninterface.h"
 #include "vector.h"
 
 /**
  * This action class can handle user events to draw points.
  *
+ * @author James Hammons
  * @author Andrew Mustun
  */
-class RS_ActionDrawPoint: public RS_PreviewActionInterface
+class ActionDrawPoint: public ActionInterface
 {
        public:
-               RS_ActionDrawPoint(RS_EntityContainer & container, GraphicView & graphicView);
-               ~RS_ActionDrawPoint();
+               ActionDrawPoint(RS_EntityContainer & container, GraphicView & graphicView);
+               ~ActionDrawPoint();
 
                virtual void trigger();
                virtual void mouseMoveEvent(QMouseEvent * e);
@@ -29,4 +30,4 @@ class RS_ActionDrawPoint: public RS_PreviewActionInterface
                Vector pt;
 };
 
-#endif
+#endif // __ACTIONDRAWPOINT_H__