]> Shamusworld >> Repos - architektonas/blobdiff - src/actions/actionprintpreview.h
In the middle of major refactoring...
[architektonas] / src / actions / actionprintpreview.h
similarity index 75%
rename from src/actions/rs_actionprintpreview.h
rename to src/actions/actionprintpreview.h
index eb20194defabae1eca50d2bd40e8e65c4a4ad650..435e84990c34f0cfd4585f1650cb0f7901123e9f 100644 (file)
@@ -1,16 +1,17 @@
-#ifndef RS_ACTIONPRINTPREVIEW_H
-#define RS_ACTIONPRINTPREVIEW_H
+#ifndef __ACTIONPRINTPREVIEW_H__
+#define __ACTIONPRINTPREVIEW_H__
 
 #include "rs.h"
-#include "rs_actioninterface.h"
+#include "actioninterface.h"
 #include "vector.h"
 
 /**
  * Default action for print preview.
  *
+ * @author James Hammons
  * @author Andrew Mustun
  */
-class RS_ActionPrintPreview: public RS_ActionInterface
+class ActionPrintPreview: public ActionInterface
 {
        public:
                /**
@@ -22,8 +23,8 @@ class RS_ActionPrintPreview: public RS_ActionInterface
                };
 
        public:
-               RS_ActionPrintPreview(RS_EntityContainer & container, GraphicView & graphicView);
-               ~RS_ActionPrintPreview();
+               ActionPrintPreview(RS_EntityContainer & container, GraphicView & graphicView);
+               ~ActionPrintPreview();
 
                virtual RS2::ActionType rtti();
                virtual void init(int status = 0);
@@ -51,4 +52,4 @@ class RS_ActionPrintPreview: public RS_ActionInterface
                Vector v2;
 };
 
-#endif
+#endif // __ACTIONPRINTPREVIEW_H__