]> SALOME platform Git repositories - modules/shaper.git/blobdiff - src/GeomAlgoAPI/GeomAlgoAPI_IGESExport.h
Salome HOME
Issue #608: Usage of OCCT in interface -- Remove OCCT from *Export interfaces
[modules/shaper.git] / src / GeomAlgoAPI / GeomAlgoAPI_IGESExport.h
index 4f0f3cc3411866511b1579f2eeff0b802d51800a..a583ae804b8acf481e2fe696ddd4627f86df4d69 100644 (file)
@@ -1,30 +1,27 @@
 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
 
-/*
- * GEOMALGOAPI_IGESExport.h
- *
- *  Created on: Dec 24, 2014
- *      Author: sbh
- */
+// File:    GEOMALGOAPI_IGESExport.h
+// Created: Dec 24, 2014
+// Author:  Sergey BELASH
 
 #ifndef GEOMALGOAPI_IGESEXPORT_H_
 #define GEOMALGOAPI_IGESEXPORT_H_
 
 #include <GeomAlgoAPI.h>
 
-#include <TCollection_AsciiString.hxx>
+#include <string>
+
 #include <TopoDS_Shape.hxx>
-#include <TDF_Label.hxx>
 
 namespace IGESExport {
 
 /// Implementation of the export IGES files algorithms
 GEOMALGOAPI_EXPORT
-bool Export(const TCollection_AsciiString& theFileName,
-            const TCollection_AsciiString& theFormatName,
+bool Export(const std::string& theFileName,
+            const std::string& theFormatName,
             const TopoDS_Shape& theShape,
-            TCollection_AsciiString& theError);
+            std::string& theError);
 
-}
+} // namespace IGESExport
 
 #endif /* GEOMALGOAPI_IGESEXPORT_H_ */