Version: 7.8.0
Main Page
Related Pages
Packages
Data Structures
Files
File List
Globals
HDFtypes.h
Go to the documentation of this file.
1
// Copyright (C) 2007-2016 CEA/DEN, EDF R&D, 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 */
52
typedef
enum
{
HDF_RDONLY
,
HDF_RDWR
}
hdf_access_mode
;
53
54
/* Values types for HDF datasets and attributes */
55
typedef
enum
{
HDF_NONE
,
HDF_STRING
,
HDF_INT32
,
HDF_INT64
,
HDF_FLOAT64
,
HDF_CHAR
,
HDF_ARRAY
}
hdf_type
;
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 */
64
typedef
enum
{
HDF_OBJECT
,
HDF_FILE
,
HDF_GROUP
,
HDF_DATASET
,
65
HDF_ATTRIBUTE
,
HDF_ARRAY_TYPE
}
hdf_object_type
;
66
67
#endif
/* HDFTYPES_H */
src
HDFPersist
HDFtypes.h
Copyright © 2007-2016 CEA/DEN, EDF R&D, OPEN CASCADE
Copyright © 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN, CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS