]> Shamusworld >> Repos - architektonas/blobdiff - src/actions/rs_actionblocksexplode.h
Major refactoring of actions: Moved implementation from header files
[architektonas] / src / actions / rs_actionblocksexplode.h
index e6cf42286f6ebf5c889a1aafab97cb386bbadc90..ed2de134ac8df130839a16d9fafa812d8645b47a 100644 (file)
@@ -10,7 +10,7 @@
 ** Foundation and appearing in the file LICENSE.GPL included in the
 ** packaging of this file.
 **
-** Licensees holding valid qcadlib Professional Edition licenses may use 
+** Licensees holding valid qcadlib Professional Edition licenses may use
 ** this file in accordance with the qcadlib Commercial License
 ** Agreement provided with the Software.
 **
  *
  * @author Andrew Mustun
  */
-class RS_ActionBlocksExplode : public RS_PreviewActionInterface {
+class RS_ActionBlocksExplode: public RS_PreviewActionInterface
+{
        //Q_OBJECT
-public:
-    RS_ActionBlocksExplode(RS_EntityContainer& container,
-                        RS_GraphicView& graphicView);
-    ~RS_ActionBlocksExplode();
+       public:
+               RS_ActionBlocksExplode(RS_EntityContainer & container, RS_GraphicView & graphicView);
+               ~RS_ActionBlocksExplode();
 
-       static QAction* createGUIAction(RS2::ActionType /*type*/, QObject* /*parent*/);
-       
-       virtual RS2::ActionType rtti() {
-               return RS2::ActionBlocksExplode;
-       }
+               static QAction * createGUIAction(RS2::ActionType /*type*/, QObject * /*parent*/);
 
-    virtual void init(int status=0);
+               virtual RS2::ActionType rtti()
+               {
+                       return RS2::ActionBlocksExplode;
+               }
 
-    virtual void trigger();
+               virtual void init(int status = 0);
+
+               virtual void trigger();
 };
 
 #endif