diff options
author | Binh-Minh Ribler <bmribler@hdfgroup.org> | 2016-04-25 06:09:46 (GMT) |
---|---|---|
committer | Binh-Minh Ribler <bmribler@hdfgroup.org> | 2016-04-25 06:09:46 (GMT) |
commit | 0d5910683d3ed82f80164573146c6c5aaf53db48 (patch) | |
tree | 3d7bcb09503fd0588ee8c1113d3f447aa669b5ce /c++/src/H5DcreatProp.h | |
parent | 32bdd82cc8f5a4fa6821a5b755f99178e0f379d4 (diff) | |
download | hdf5-0d5910683d3ed82f80164573146c6c5aaf53db48.zip hdf5-0d5910683d3ed82f80164573146c6c5aaf53db48.tar.gz hdf5-0d5910683d3ed82f80164573146c6c5aaf53db48.tar.bz2 |
[svn-r29786] Purpose: Add new wrapper
Description:
Added wrapper for H5Tset_nbit: void DSetCreatPropList::setNbit() const.
Platforms tested:
Linux/32 2.6 (jam)
Linux/64 (platypus)
Darwin (osx1010test)
Diffstat (limited to 'c++/src/H5DcreatProp.h')
-rw-r--r-- | c++/src/H5DcreatProp.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/c++/src/H5DcreatProp.h b/c++/src/H5DcreatProp.h index 792956a..51347e8 100644 --- a/c++/src/H5DcreatProp.h +++ b/c++/src/H5DcreatProp.h @@ -114,6 +114,9 @@ class H5_DLLCPP DSetCreatPropList : public ObjCreatPropList { // Sets SZIP compression method. void setSzip(unsigned int options_mask, unsigned int pixels_per_block) const; + // Sets N-bit compression method. + void setNbit() const; + ///\brief Returns this class name. virtual H5std_string fromClass () const { return("DSetCreatPropList"); } |