Salome HOME
Merge branch 'Dev_0.6.1' of newgeom:newgeom into Dev_0.6.1
[modules/shaper.git] / src / XGUI / XGUI_SelectionMgr.h
index 0519e29d019ef11b8f750ef3e6363b43de055e71..6b45fff70adb6f2b564d602964cfd97ad3b20b79 100644 (file)
@@ -1,3 +1,5 @@
+// Copyright (C) 2014-20xx CEA/DEN, EDF R&D -->
+
 #ifndef XGUI_SelectionMgr_H
 #define XGUI_SelectionMgr_H
 
@@ -21,12 +23,15 @@ class XGUI_Selection;
  */
 class XGUI_EXPORT XGUI_SelectionMgr : public QObject
 {
-  Q_OBJECT
-public:
+Q_OBJECT
+ public:
   XGUI_SelectionMgr(XGUI_Workshop* theParent);
   virtual ~XGUI_SelectionMgr();
 
-  XGUI_Selection* selection() const { return mySelection; }
+  XGUI_Selection* selection() const
+  {
+    return mySelection;
+  }
 
   //! Connects the manager to all viewers accessible by Workshop
   void connectViewers();
@@ -35,11 +40,11 @@ signals:
   //! Emited when selection in a one of viewers was changed
   void selectionChanged();
 
-private slots:
+ private slots:
   void onObjectBrowserSelection();
   void onViewerSelection();
 
-private:
+ private:
   XGUI_Workshop* myWorkshop;
   XGUI_Selection* mySelection;
 };