blob: 18f30c682ed82e2c6196eee16eb7c247a3c1118c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* Copyright by The HDF Group. *
* All rights reserved. *
* *
* This file is part of HDF5. The full HDF5 copyright notice, including *
* terms governing use, modification, and redistribution, is contained in *
* the COPYING file, which can be found at the root of the source code *
* distribution tree, or in https://www.hdfgroup.org/licenses. *
* If you do not have access to either file, you may request a copy from *
* help@hdfgroup.org. *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/*
* Programmer: Quincey Koziol
* Saturday, September 12, 2015
*
* Purpose: This file contains declarations which define macros for the
* H5P package. Including this header means that the source file
* is part of the H5P package.
*/
#ifndef H5Pmodule_H
#define H5Pmodule_H
/* Define the proper control macros for the generic FUNC_ENTER/LEAVE and error
* reporting macros.
*/
#define H5P_MODULE
#define H5_MY_PKG H5P
#define H5_MY_PKG_ERR H5E_PLIST
#define H5_MY_PKG_INIT YES
/**\defgroup H5P H5P
* \brief Property List Interface
*
* \details The HDF5 Property List Interface provides a mechanism to take
* advantage of more powerful or unusual features in HDF5.
*
* HDF5 objects have properties or characteristics associated with
* them, and there are default properties that handle the most
* common needs. These default properties can be modified using the
* HDF5 Property List Interface. For example, the data storage
* layout property of a dataset is contiguous by default. For better
* performance, the layout can be modified to be chunked or chunked
* and compressed.
*
* \todo Describe concisely what the functions in this module are about.
*
* \defgroup GPLO General Property List Operations
* \ingroup H5P
* \defgroup GPLOA General Property List Operations (Advanced)
* \ingroup H5P
* \defgroup FCPL File Creation Properties
* \ingroup H5P
* \defgroup FAPL File Access Properties
* \ingroup H5P
* \defgroup GCPL Group Creation Properties
* \ingroup H5P
* \defgroup ALCAPL Attribute and Link Creation Properties
* \ingroup H5P
* \defgroup LAPL Link Access Properties
* \ingroup H5P
* \defgroup DCPL Dataset Creation Properties
* \ingroup H5P
* \defgroup DAPL Dataset Access Properties
* \ingroup H5P
* \defgroup DXPL Dataset Transfer Properties
* \ingroup H5P
* \defgroup OCPL Object Creation Properties
* \ingroup H5P
* \defgroup OCPPL Object Copy Properties
* \ingroup H5P
* \defgroup GACPL General Access Properties
* \ingroup H5P
* \defgroup MAPL Map Access Properties
* \ingroup H5P
*/
#endif /* H5Pmodule_H */
|