Salome HOME
0022377: EDF 2752 GEOM: Add a preference in order to automatically unpublished parent...
[modules/geom.git] / src / TransformationGUI / TransformationGUI_RotationDlg.cxx
index e88ba0ab6ddd23b71db39346070d0dd04e5084be..adb8767df5adacb31dbaac0c5bec4d53471b2d3d 100644 (file)
@@ -616,3 +616,14 @@ void TransformationGUI_RotationDlg::addSubshapesToStudy()
     }
   }
 }
+
+//=================================================================================
+// function : getSourceObjects
+// purpose  : virtual method to get source objects
+//=================================================================================
+QList<GEOM::GeomObjPtr> TransformationGUI_RotationDlg::getSourceObjects()
+{
+  QList<GEOM::GeomObjPtr> res(myObjects);
+  res << myAxis << myCentPoint << myPoint1 << myPoint2;
+  return res;
+}