mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-07 18:30:55 +03:00
The copying permission statements at the beginning of source files updated to refer to LGPL. Copyright dates extended till 2014 in advance.
57 lines
2.1 KiB
C++
57 lines
2.1 KiB
C++
// Created on: 1991-08-30
|
|
// Created by: Christian CAILLET
|
|
// Copyright (c) 1991-1999 Matra Datavision
|
|
// Copyright (c) 1999-2014 OPEN CASCADE SAS
|
|
//
|
|
// This file is part of Open CASCADE Technology software library.
|
|
//
|
|
// This library is free software; you can redistribute it and / or modify it
|
|
// under the terms of the GNU Lesser General Public version 2.1 as published
|
|
// by the Free Software Foundation, with special exception defined in the file
|
|
// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
|
|
// distribution for complete text of the license and disclaimer of any warranty.
|
|
//
|
|
// Alternatively, this file may be used under the terms of Open CASCADE
|
|
// commercial license or contractual agreement.
|
|
|
|
// StepFile_Read.hxx
|
|
|
|
// routine assurant l'enchainement des operations de lecture d'un fichier
|
|
// STEP dans un StepModel, en fonction d'une cle de reconnaissance
|
|
// Retour de la fonction :
|
|
// 0 si OK (le StepModel a ete charge)
|
|
// -1 si abandon car fichier pas pu etre ouvert
|
|
// 1 si erreur en cours de lecture
|
|
|
|
|
|
#ifndef StepFile_Read_HeaderFile
|
|
#define StepFile_Read_HeaderFile
|
|
|
|
//# include <stepread.h> : sauf recfile_modeprint, declare ici
|
|
# include <StepData_StepModel.hxx>
|
|
# include <StepData_FileRecognizer.hxx>
|
|
# include <StepData_Protocol.hxx>
|
|
|
|
|
|
Standard_EXPORT void StepFile_ReadTrace (const Standard_Integer mode);
|
|
// Modal : 0 pas de trace, 1 trace LoadModel, 2 & 3 + trace interne lex-yac
|
|
|
|
Standard_EXPORT Standard_Integer StepFile_Read
|
|
(char* nomfic,
|
|
const Handle(StepData_StepModel)& stepmodel,
|
|
const Handle(StepData_FileRecognizer)& recoheader, // Reconnait le Header
|
|
const Handle(StepData_FileRecognizer)& recodata); // Entites du Data
|
|
|
|
Standard_EXPORT Standard_Integer StepFile_Read
|
|
(char* nomfic,
|
|
const Handle(StepData_StepModel)& stepmodel,
|
|
const Handle(StepData_FileRecognizer)& recoheader, // Reconnait le Header
|
|
const Handle(StepData_Protocol)& protocol); // Entites du Data
|
|
|
|
Standard_EXPORT Standard_Integer StepFile_Read
|
|
(char* nomfic,
|
|
const Handle(StepData_StepModel)& stepmodel,
|
|
const Handle(StepData_Protocol)& protocol); // Header & Data
|
|
|
|
#endif
|