Salome HOME
0022377: EDF 2752 GEOM: Add a preference in order to automatically unpublished parent...
[modules/geom.git] / src / BlocksGUI / BlocksGUI_BlockDlg.cxx
index 71f73a8dd04e5fd9a9d5d9f2a3d3a3908d0ceb59..c4b98627186a7a0dde21e685e26557e912a83126 100644 (file)
@@ -501,3 +501,15 @@ void BlocksGUI_BlockDlg::addSubshapesToStudy()
     break;
   }
 }
+
+//=================================================================================
+// function : getSourceObjects
+// purpose  : virtual method to get source objects
+//=================================================================================
+QList<GEOM::GeomObjPtr> BlocksGUI_BlockDlg::getSourceObjects()
+{
+  QList<GEOM::GeomObjPtr> res;
+  res << myFace1 << myFace2 << myFace3
+      << myFace4 << myFace5 << myFace6;
+  return res;
+}