]> SALOME platform Git repositories - modules/shaper.git/blobdiff - src/GeomAlgoAPI/GeomAlgoAPI_STEPExport.h
Salome HOME
Merge branch 'jfa/40620_ExportXAO_separate_BREP'
[modules/shaper.git] / src / GeomAlgoAPI / GeomAlgoAPI_STEPExport.h
index 43db04f9d2b54148d25199aeef12ea543002f0c3..d56d7d083deef91f529c3e9226711abceec4ec8a 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2014-2022  CEA/DEN, EDF R&D
+// Copyright (C) 2014-2024  CEA, EDF
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Lesser General Public
 #include <GeomAlgoAPI.h>
 
 #include <string>
+#include <list>
+#include <memory>
 
-#include <GeomAPI_Shape.h>
+class GeomAPI_Shape;
+class ModelAPI_Result;
 
-/// Implementation of the export STEP files algorithms
+/// Implementation of the export STEP files algorithms.
+/// In order to supposrt names and colors experted, theShapes list corresponds to theResults
+/// list elements one by one.
 GEOMALGOAPI_EXPORT
 bool STEPExport(const std::string& theFileName,
-                const std::string& theFormatName,
-                const std::shared_ptr<GeomAPI_Shape>& theShape,
+                const std::list<std::shared_ptr<GeomAPI_Shape> >& theShapes,
+                const std::list<std::shared_ptr<ModelAPI_Result> >& theResults,
                 std::string& theError);
 
 #endif /* GEOMALGOAPI_STEPEXPORT_H_ */