Salome HOME
4202d92d6690ee2d33d765488047453b5487b476
[modules/med.git] / src / MEDWrapper / V2_1 / med_misc.hxx
1 // Copyright (C) 2005  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
2 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
3 // 
4 // This library is free software; you can redistribute it and/or
5 // modify it under the terms of the GNU Lesser General Public
6 // License as published by the Free Software Foundation; either 
7 // version 2.1 of the License.
8 // 
9 // This library is distributed in the hope that it will be useful 
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of 
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
12 // Lesser General Public License for more details.
13 //
14 // You should have received a copy of the GNU Lesser General Public  
15 // License along with this library; if not, write to the Free Software 
16 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
17 //
18 // See http://www.salome-platform.org/
19 //
20 /*************************************************************************
21 * COPYRIGHT (C) 1999 - 2002  EDF R&D
22 * THIS LIBRARY IS FREE SOFTWARE; YOU CAN REDISTRIBUTE IT AND/OR MODIFY
23 * IT UNDER THE TERMS OF THE GNU LESSER GENERAL PUBLIC LICENSE 
24 * AS PUBLISHED BY THE FREE SOFTWARE FOUNDATION; 
25 * EITHER VERSION 2.1 OF THE LICENSE, OR (AT YOUR OPTION) ANY LATER VERSION.
26 *
27 * THIS LIBRARY IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, BUT
28 * WITHOUT ANY WARRANTY; WITHOUT EVEN THE IMPLIED WARRANTY OF
29 * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. SEE THE GNU
30 * LESSER GENERAL PUBLIC LICENSE FOR MORE DETAILS.
31 *
32 * YOU SHOULD HAVE RECEIVED A COPY OF THE GNU LESSER GENERAL PUBLIC LICENSE
33 * ALONG WITH THIS LIBRARY; IF NOT, WRITE TO THE FREE SOFTWARE FOUNDATION,
34 * INC., 59 TEMPLE PLACE, SUITE 330, BOSTON, MA 02111-1307 USA
35 *
36 *************************************************************************/
37
38 #ifndef MED_MISC_H
39 #define MED_MISC_H
40 #include "med.hxx"
41
42
43 /* CHAINES DE CARACTERES FORTRAN => C */
44 namespace med_2_1{
45
46 extern
47 char *_MED1cstring(char *chaine,int longueur_reelle,int longueur_fixee);
48
49 extern
50 char *_MED2cstring(char *chaine, int longueur);
51
52 extern
53 med_err _MEDcstringFree(char *chaine);
54
55 extern
56 med_err _MEDfstring(char *chaine, med_int longueur_fixee);
57
58 /* Noms associes aux objets MED */
59 extern
60 med_err _MEDnomEntite(char *nom_ent,med_entite_maillage type_ent);
61
62 extern
63 med_err _MEDnomGeometrie(char *nom_geo,med_geometrie_element type_geo);
64
65 extern
66 med_err _MEDparametresGeometrie(med_entite_maillage type_ent, 
67                                med_geometrie_element type_geo, int *dim, int *nnoe,
68                                int *ndes);
69 extern
70 med_err _MEDnomDataset(char *nom_dataset,med_table quoi,
71                        med_connectivite type_conn);
72
73 /* Geometrie des objets MED */
74 extern 
75 med_err _MEDGeometrieElement(med_geometrie_element typ_geo[],
76                              med_entite_maillage typ_ent);
77
78 }
79
80 #endif /* MED_MISC_H */
81