summaryrefslogtreecommitdiffstats
path: root/c++/src/H5LcreatProp.h
diff options
context:
space:
mode:
authorBinh-Minh Ribler <bmribler@hdfgroup.org>2019-04-22 04:18:36 (GMT)
committerBinh-Minh Ribler <bmribler@hdfgroup.org>2019-04-22 04:18:36 (GMT)
commitc3d7708e53ae0e7dade4a99f0e43944560e4fff0 (patch)
tree455416a7632c3abe037cb497eccd20a79ab585b9 /c++/src/H5LcreatProp.h
parent500f6cccbd4bfe01b67f2bd02f74df58edef045f (diff)
downloadhdf5-c3d7708e53ae0e7dade4a99f0e43944560e4fff0.zip
hdf5-c3d7708e53ae0e7dade4a99f0e43944560e4fff0.tar.gz
hdf5-c3d7708e53ae0e7dade4a99f0e43944560e4fff0.tar.bz2
Added new C++ wrappers - HDFFV-10622
Description: Added wrappers for H5Pset/get_create_intermediate_group: // Specifies in property list whether to create missing // intermediate groups void setCreateIntermediateGroup(bool crt_intmd_group) const; // Determines whether property is set to enable creating missing // intermediate groups bool getCreateIntermediateGroup() const; Platforms tested: Linux/64 (jelly) Linux/64 (platypus) Darwin (osx1011test)
Diffstat (limited to 'c++/src/H5LcreatProp.h')
-rw-r--r--c++/src/H5LcreatProp.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/c++/src/H5LcreatProp.h b/c++/src/H5LcreatProp.h
index f6e10bf..908ef63 100644
--- a/c++/src/H5LcreatProp.h
+++ b/c++/src/H5LcreatProp.h
@@ -40,6 +40,14 @@ class H5_DLLCPP LinkCreatPropList : public PropList {
// using the property list id.
LinkCreatPropList (const hid_t plist_id);
+ // Specifies in property list whether to create missing
+ // intermediate groups
+ void setCreateIntermediateGroup(bool crt_intmd_group) const;
+
+ // Determines whether property is set to enable creating missing
+ // intermediate groups
+ bool getCreateIntermediateGroup() const;
+
// Sets the character encoding of the string.
void setCharEncoding(H5T_cset_t encoding) const;