MED fichier
medfamily.h
Aller à la documentation de ce fichier.
1 /* This file is part of MED.
2  *
3  * COPYRIGHT (C) 1999 - 2021 EDF R&D, CEA/DEN
4  * MED is free software: you can redistribute it and/or modify
5  * it under the terms of the GNU Lesser General Public License as published by
6  * the Free Software Foundation, either version 3 of the License, or
7  * (at your option) any later version.
8  *
9  * MED 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
12  * GNU Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public License
15  * along with MED. If not, see <http://www.gnu.org/licenses/>.
16  */
17 
18 #ifndef MED_MEDFAMILY_H
19 #define MED_MEDFAMILY_H
20 
21 #include "medC_win_dll.h"
22 
23 #ifdef __cplusplus
24 extern "C" {
25 #endif
26 
27 
28 /* Family */
29 
31 MEDfamilyCr(const med_idt fid,
32  const char * const meshname,
33  const char * const familyname,
34  const med_int familynumber,
35  const med_int ngroup,
36  const char * const groupname);
37 
39 MEDnFamily(const med_idt fid,
40  const char * const meshname);
41 
43 MEDnFamilyGroup(const med_idt fid,
44  const char * const meshname,
45  const int famit);
46 
48 MEDfamilyInfo(const med_idt fid,
49  const char * const meshname,
50  const int famit,
51  char * const familyname,
52  med_int * const familynumber,
53  char * const groupname);
54 
57  const char * const meshname,
58  const int famit);
59 
61 MEDfamily23Info( const med_idt fid,
62  const char * const meshname,
63  const int famit,
64  char * const familyname,
65  med_int * const attributenumber,
66  med_int * const attributevalue,
67  char * const attributedes,
68  med_int * const familynumber,
69  char * const groupname);
70 #ifdef __cplusplus
71 }
72 #endif
73 
74 #endif /* MED_MEDFAMILY_H */
75 
MEDC_EXPORT
#define MEDC_EXPORT
Definition: medC_win_dll.h:29
MEDnFamily23Attribute
MEDC_EXPORT med_int MEDnFamily23Attribute(const med_idt fid, const char *const meshname, const int famit)
Cette routine permet de lire le nombre d'attribut dans une famille dans un maillage créé avec MED 2....
Definition: MEDnFamily23Attribute.c:36
med_idt
hid_t med_idt
Definition: med.h:331
MEDfamily23Info
MEDC_EXPORT med_err MEDfamily23Info(const med_idt fid, const char *const meshname, const int famit, char *const familyname, med_int *const attributenumber, med_int *const attributevalue, char *const attributedes, med_int *const familynumber, char *const groupname)
Cette routine permet de lire les informations relatives à une famille d'un maillage créé avec MED 2....
Definition: MEDfamily23Info.c:42
med_err
herr_t med_err
Definition: med.h:332
med_int
int med_int
Definition: med.h:342
MEDfamilyCr
MEDC_EXPORT med_err MEDfamilyCr(const med_idt fid, const char *const meshname, const char *const familyname, const med_int familynumber, const med_int ngroup, const char *const groupname)
Cette routine permet la création d'une famille portant sur les entités d'un maillage.
Definition: MEDfamilyCr.c:40
medC_win_dll.h
MEDnFamilyGroup
MEDC_EXPORT med_int MEDnFamilyGroup(const med_idt fid, const char *const meshname, const int famit)
Cette routine permet de lire le nombre de groupe dans une famille.
Definition: MEDnFamilyGroup.c:36
MEDnFamily
MEDC_EXPORT med_int MEDnFamily(const med_idt fid, const char *const meshname)
Cette routine permet de lire le nombre de famille dans un maillage.
Definition: MEDnFamily.c:35
MEDfamilyInfo
MEDC_EXPORT med_err MEDfamilyInfo(const med_idt fid, const char *const meshname, const int famit, char *const familyname, med_int *const familynumber, char *const groupname)
Cette routine permet de lire les informations relatives à une famille d'un maillage.
Definition: MEDfamilyInfo.c:39