1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-09 18:50:54 +03:00
occt/src/IGESFile/igesread.h
abv d5f74e42d6 0024624: Lost word in license statement in source files
License statement text corrected; compiler warnings caused by Bison 2.41 disabled for MSVC; a few other compiler warnings on 54-bit Windows eliminated by appropriate type cast
Wrong license statements corrected in several files.
Copyright and license statements added in XSD and GLSL files.
Copyright year updated in some files.
Obsolete documentation files removed from DrawResources.
2014-02-20 16:15:17 +04:00

74 lines
2.5 KiB
C

/*
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 License 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.
*/
/* Appel externe aux routines de lecture (en C) */
#include <stdio.h>
/* structiges : */
struct parlist {
struct oneparam *first, *last;
int nbparam;
};
struct dirpart {
int typ,poi,pdef,tra,niv,vue,trf,aff,blk,sub,use,her; /* ligne 1 */
int typ2,epa,col,nbl,form; /* ligne 2 */
char res1[10],res2[10],nom[10],num[10];
struct parlist list; /* liste Psect */
int numpart; /* n0 en Dsect */
};
#ifdef __cplusplus
extern "C" {
#endif
int igesread (char* nomfic,int lesect[6],int modefnes);
/* structiges : */
int iges_lirpart
(int* *tabval,char* *res1,char* *res2,char* *nom,char* *num,int* nbparam);
void iges_stats (int* nbpart, int* nbparam);
void iges_setglobal ();
void iges_nextpart ();
int iges_lirparam (int* typarg,char* *parval);
void iges_finfile (int mode);
struct dirpart *iges_get_curp (void);
void iges_initfile();
int iges_lire (FILE* lefic, int *numsec, char ligne[100], int modefnes);
void iges_newparam(int typarg,int longval, char *parval);
void iges_param(int *Pstat,char *ligne,char c_separ,char c_fin,int lonlin);
void iges_Dsect (int *Dstat,int numsec,char* ligne);
void iges_Psect(int numsec,char ligne[80]);
/* MGE 20/07/98 */
void IGESFile_Check2 (int mode,char * code, int num, char * str);
void IGESFile_Check3 (int mode,char * code);
#ifdef __cplusplus
}
#endif
/* Definition des types de parametres de l'analyseur de base IGES */
#define ArgVide 0
#define ArgQuid 1
#define ArgChar 2
#define ArgInt 3 /* Entier non signe : peut evoluer vers Real ou Char */
#define ArgSign 4 /* Entier signe : peut evoluer vers Real */
#define ArgReal 5
#define ArgExp 6 /* Real + lettre E : attendre confirmation */
#define ArgRexp 7 /* Real + Exposant : se ramene a Real */
#define ArgMexp 8 /* Real + Exposant INCOMPLET (pas de point decimal) */