Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 10:04:00

0001 // Copyright (c) 1999-2014 OPEN CASCADE SAS
0002 //
0003 // This file is part of Open CASCADE Technology software library.
0004 //
0005 // This library is free software; you can redistribute it and/or modify it under
0006 // the terms of the GNU Lesser General Public License version 2.1 as published
0007 // by the Free Software Foundation, with special exception defined in the file
0008 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
0009 // distribution for complete text of the license and disclaimer of any warranty.
0010 //
0011 // Alternatively, this file may be used under the terms of Open CASCADE
0012 // commercial license or contractual agreement.
0013 
0014 //  Include a utiliser pour appeler IGESFile_Read
0015 
0016 
0017 #ifndef IGESFile_Read_HeaderFile
0018 #define IGESFile_Read_HeaderFile
0019 
0020 #include <IGESData_IGESModel.hxx>
0021 #include <IGESData_Protocol.hxx>
0022 #include <IGESData_FileRecognizer.hxx>
0023 
0024 
0025 Standard_EXPORT Standard_Integer IGESFile_Read
0026   (char* nomfic,
0027    const Handle(IGESData_IGESModel)& amodel,
0028    const Handle(IGESData_Protocol)& protocol);
0029 
0030 Standard_EXPORT Standard_Integer IGESFile_ReadFNES
0031   (char* nomfic,
0032    const Handle(IGESData_IGESModel)& amodel,
0033    const Handle(IGESData_Protocol)& protocol);
0034 
0035 Standard_EXPORT Standard_Integer IGESFile_Read
0036   (char* nomfic,
0037    const Handle(IGESData_IGESModel)& amodel,
0038    const Handle(IGESData_Protocol)& protocol,
0039    const Handle(IGESData_FileRecognizer)& reco,
0040    const Standard_Boolean modefnes = Standard_False);
0041 
0042 #endif