Version: 9.15.0
HDFtypes.h
Go to the documentation of this file.
1 /* Copyright (C) 2007-2025 CEA, EDF, OPEN CASCADE
2  *
3  * Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4  * CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19  *
20  * See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21  */
22 
23 /*----------------------------------------------------------------------------------
24  SALOME HDFPersist : implementation of HDF persitent ( save/ restore )
25  File : HDFtypes.h
26  Module : SALOME
27 ----------------------------------------------------------------------------------*/
28 
29 #ifndef HDFTYPES_H
30 #define HDFTYPES_H
31 
32 #include <hdf5.h>
33 
34 /* max length of a HDF object */
35 #define HDF_NAME_MAX_LEN 100
36 
37 /* HDF 5 types */
38 typedef size_t hdf_size_type;
39 typedef H5T_class_t hdf_class_type;
40 typedef hsize_t hdf_size;
41 typedef hid_t hdf_idt;
42 typedef herr_t hdf_err;
43 typedef hbool_t hdf_bool;
44 typedef H5T_order_t hdf_byte_order;
45 
46 typedef char hdf_char;
47 typedef int hdf_int32;
48 typedef long hdf_int64;
49 typedef double hdf_float64;
50 
51 /* Access Mode */
53 
54 /* Values types for HDF datasets and attributes */
56 /* - HDF_STRING : C string
57  - HDF_INT32 : 32 bits integer
58  - HDF_INT64 : 64 bits integer
59  - HDF_FLOAT64 : IEEE 64 bits float
60  - HDF_ARRAY : Array
61 */
62 
63 /* HDF object types */
66 
67 #endif /* HDFTYPES_H */
long hdf_int64
Definition: HDFtypes.h:48
hbool_t hdf_bool
Definition: HDFtypes.h:43
herr_t hdf_err
Definition: HDFtypes.h:42
H5T_class_t hdf_class_type
Definition: HDFtypes.h:39
hdf_access_mode
Definition: HDFtypes.h:52
@ HDF_RDWR
Definition: HDFtypes.h:52
@ HDF_RDONLY
Definition: HDFtypes.h:52
hid_t hdf_idt
Definition: HDFtypes.h:41
int hdf_int32
Definition: HDFtypes.h:47
hdf_object_type
Definition: HDFtypes.h:64
@ HDF_ATTRIBUTE
Definition: HDFtypes.h:65
@ HDF_OBJECT
Definition: HDFtypes.h:64
@ HDF_ARRAY_TYPE
Definition: HDFtypes.h:65
@ HDF_FILE
Definition: HDFtypes.h:64
@ HDF_DATASET
Definition: HDFtypes.h:64
@ HDF_GROUP
Definition: HDFtypes.h:64
hdf_type
Definition: HDFtypes.h:55
@ HDF_INT32
Definition: HDFtypes.h:55
@ HDF_INT64
Definition: HDFtypes.h:55
@ HDF_STRING
Definition: HDFtypes.h:55
@ HDF_ARRAY
Definition: HDFtypes.h:55
@ HDF_FLOAT64
Definition: HDFtypes.h:55
@ HDF_CHAR
Definition: HDFtypes.h:55
@ HDF_NONE
Definition: HDFtypes.h:55
char hdf_char
Definition: HDFtypes.h:46
size_t hdf_size_type
Definition: HDFtypes.h:38
double hdf_float64
Definition: HDFtypes.h:49
hsize_t hdf_size
Definition: HDFtypes.h:40
H5T_order_t hdf_byte_order
Definition: HDFtypes.h:44