Salome HOME
Edit arc by dragging
[modules/shaper.git] / src / GeomAlgoAPI / GeomAlgoAPI_STEPImport.h
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
2
3 /*
4  * GEOMALGOAPI_STEPImport.h
5  *
6  *  Created on: Dec 24, 2014
7  *      Author: sbh
8  */
9
10 #include <GeomAlgoAPI.h>
11
12 #include <TCollection_AsciiString.hxx>
13 #include <TCollection_HAsciiString.hxx>
14 #include <TopoDS_Shape.hxx>
15 #include <TDF_Label.hxx>
16
17 namespace STEPImport {
18
19 GEOMALGOAPI_EXPORT
20 Handle(TCollection_HAsciiString) GetValue(const TCollection_AsciiString& theFileName,
21                                           const TCollection_AsciiString& theParameterName,
22                                           TCollection_AsciiString& theError);
23 GEOMALGOAPI_EXPORT
24 TopoDS_Shape Import(const TCollection_AsciiString& theFileName,
25                     const TCollection_AsciiString& theFormatName, TCollection_AsciiString& theError,
26                     const TDF_Label& theShapeLabel);
27 }