diff options
Diffstat (limited to 'src/H5Pacpl.c')
-rw-r--r-- | src/H5Pacpl.c | 64 |
1 files changed, 61 insertions, 3 deletions
diff --git a/src/H5Pacpl.c b/src/H5Pacpl.c index 6374dc0..fd5f5de 100644 --- a/src/H5Pacpl.c +++ b/src/H5Pacpl.c @@ -12,14 +12,72 @@ * access to either file, you may request a copy from hdfhelp@ncsa.uiuc.edu. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ +/*------------------------------------------------------------------------- + * + * Created: H5Pacpl.c + * January 2 2006 + * James Laird <jlaird@ncsa.uiuc.edu> + * + * Purpose: Attribute creation property list class routines + * + *------------------------------------------------------------------------- + */ + +/****************/ +/* Module Setup */ +/****************/ #define H5P_PACKAGE /*suppress error about including H5Ppkg */ -/* Private header files */ +/***********/ +/* Headers */ +/***********/ #include "H5private.h" /* Generic Functions */ #include "H5Eprivate.h" /* Error handling */ #include "H5Ppkg.h" /* Property lists */ -/* Local datatypes */ -/* Static function prototypes */ +/****************/ +/* Local Macros */ +/****************/ + + +/******************/ +/* Local Typedefs */ +/******************/ + + +/********************/ +/* Package Typedefs */ +/********************/ + + +/********************/ +/* Local Prototypes */ +/********************/ + + +/*********************/ +/* Package Variables */ +/*********************/ + +/* Attribute creation property list class library initialization object */ +const H5P_libclass_t H5P_CLS_ACRT[1] = {{ + "attribute create", /* Class name for debugging */ + &H5P_CLS_STRING_CREATE_g, /* Parent class ID */ + &H5P_CLS_ATTRIBUTE_CREATE_g, /* Pointer to class ID */ + &H5P_LST_ATTRIBUTE_CREATE_g, /* Pointer to default property list ID */ + NULL, /* Default property registration routine */ + NULL, /* Class creation callback */ + NULL, /* Class creation callback info */ + NULL, /* Class copy callback */ + NULL, /* Class copy callback info */ + NULL, /* Class close callback */ + NULL /* Class close callback info */ +}}; + + +/*****************************/ +/* Library Private Variables */ +/*****************************/ + |