Salome HOME
Merge branch 'MultiLevelCompound'
[modules/shaper.git] / src / FeaturesPlugin / FeaturesPlugin_Tools.h
index c6cd120dbd4642282ce3a6509915834323160333..dd04de569f511a3517ccc12b7604ac69afe31ea3 100644 (file)
@@ -1,24 +1,61 @@
-// Copyright (C) 2014-20xx CEA/DEN, EDF R&D
-
-// File:        FeaturesPlugin_Tools.h
-// Created:     17 November 2016
-// Author:      Dmitry Bobylev
+// Copyright (C) 2014-2019  CEA/DEN, EDF R&D
+//
+// This library is free software; you can redistribute it and/or
+// modify it under the terms of the GNU Lesser General Public
+// License as published by the Free Software Foundation; either
+// version 2.1 of the License, or (at your option) any later version.
+//
+// This library is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+// Lesser General Public License for more details.
+//
+// You should have received a copy of the GNU Lesser General Public
+// License along with this library; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
+//
+// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
+//
 
 #ifndef FeaturesPlugin_Tools_H_
 #define FeaturesPlugin_Tools_H_
 
-#include <GeomAlgoAPI_Translation.h>
+#include <GeomAlgoAPI_MakeShape.h>
+#include <ModelAPI_ResultBody.h>
 
-class ModelAPI_ResultBody;
+#include <vector>
 
 class FeaturesPlugin_Tools {
 public:
-  static void storeModifiedShapes(GeomAlgoAPI_MakeShape& theAlgo,
-                                  std::shared_ptr<ModelAPI_ResultBody> theResultBody,
-                                  std::shared_ptr<GeomAPI_Shape> theBaseShape,
-                                  int& theTag,
-                                  const std::string theName,
-                                  GeomAPI_DataMapOfShapeShape& theSubShapes);
+  struct ResultBaseAlgo {
+    ResultBodyPtr resultBody;
+    GeomShapePtr baseShape;
+    GeomMakeShapePtr makeShape;
+  };
+
+public:
+  static void loadModifiedShapes(ResultBodyPtr theResultBody,
+                                 const ListOfShape& theBaseShapes,
+                                 const ListOfShape& theTools,
+                                 const GeomMakeShapePtr& theMakeShape,
+                                 const GeomShapePtr theResultShape,
+                                 const std::string& theNamePrefix = "");
+
+  static void loadModifiedShapes(ResultBodyPtr theResultBody,
+                                 const GeomShapePtr& theBaseShape,
+                                 const GeomMakeShapePtr& theMakeShape,
+                                 const std::string theName);
+    /// Stores deleted shapes.
+  static void loadDeletedShapes(ResultBodyPtr theResultBody,
+                                const GeomShapePtr theBaseShape,
+                                const ListOfShape& theTools,
+                                const GeomMakeShapePtr& theMakeShape,
+                                const GeomShapePtr theResultShapesCompound);
+
+  /// Stores deleted shapes.
+  static void loadDeletedShapes(std::vector<ResultBaseAlgo>& theResultBaseAlgoList,
+                                const ListOfShape& theTools,
+                                const GeomShapePtr theResultShapesCompound);
 };
 
 #endif /* FeaturesPlugin_Tools_H_ */