diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2000-11-29 17:38:19 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2000-11-29 17:38:19 (GMT) |
commit | 19d811532a101399eed1a0f38d09574ee3c09001 (patch) | |
tree | 6f7e2147d0567594de2c521f60b1e2cdc6674577 /src/H5Tpublic.h | |
parent | ad731c2c1bc8683b6a5a4e77a0278d76fa2daec8 (diff) | |
download | hdf5-19d811532a101399eed1a0f38d09574ee3c09001.zip hdf5-19d811532a101399eed1a0f38d09574ee3c09001.tar.gz hdf5-19d811532a101399eed1a0f38d09574ee3c09001.tar.bz2 |
[svn-r3020] Purpose:
Code addition
Description:
The dumper needs to know when a datatype needs to be reclaimed, so I
added a small helper function to detect if a particular datatype is or
contains a particular class of datatypes.
Platforms tested:
Linux 2.2.16-3smp (eirene)
Diffstat (limited to 'src/H5Tpublic.h')
-rw-r--r-- | src/H5Tpublic.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/H5Tpublic.h b/src/H5Tpublic.h index 1a20382..3abb8d5 100644 --- a/src/H5Tpublic.h +++ b/src/H5Tpublic.h @@ -489,6 +489,7 @@ __DLL__ char *H5Tget_tag(hid_t type); /* Querying property values */ __DLL__ hid_t H5Tget_super(hid_t type); __DLL__ H5T_class_t H5Tget_class(hid_t type_id); +__DLL__ htri_t H5Tdetect_class(hid_t type_id, H5T_class_t cls); __DLL__ size_t H5Tget_size(hid_t type_id); __DLL__ H5T_order_t H5Tget_order(hid_t type_id); __DLL__ size_t H5Tget_precision(hid_t type_id); |