]> Shamusworld >> Repos - architektonas/blobdiff - src/actions/rs_actionblocksedit.h
Major refactoring of actions: Moved implementation from header files
[architektonas] / src / actions / rs_actionblocksedit.h
index 845cdfa9c802070dba55dc8eaaffedcd808b18d4..764e036f8b369434752d0c9c1b351371cb6ad663 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_ActionBlocksEdit : public RS_ActionInterface {
+class RS_ActionBlocksEdit: public RS_ActionInterface
+{
        //Q_OBJECT
-public:
-    RS_ActionBlocksEdit(RS_EntityContainer& container,
-                        RS_GraphicView& graphicView);
-    ~RS_ActionBlocksEdit() {}
+       public:
+               RS_ActionBlocksEdit(RS_EntityContainer & container, RS_GraphicView & graphicView);
+               ~RS_ActionBlocksEdit()
+               {
+               }
 
-       static QAction* createGUIAction(RS2::ActionType /*type*/, QObject* /*parent*/);
-
-    virtual void init(int status=0);
-    virtual void trigger();
+               static QAction * createGUIAction(RS2::ActionType /*type*/, QObject * /*parent*/);
 
+               virtual void init(int status = 0);
+               virtual void trigger();
 };
 
 #endif