summaryrefslogtreecommitdiffstats
path: root/c++/src/H5LaccProp.h
diff options
context:
space:
mode:
authorBinh-Minh Ribler <bmribler@hdfgroup.org>2017-03-16 23:19:32 (GMT)
committerBinh-Minh Ribler <bmribler@hdfgroup.org>2017-03-16 23:19:32 (GMT)
commitf7711df680f2ccd07f23223deccb217440ec3788 (patch)
tree4ad4633af3ce182c14aecd4430135298d0a95371 /c++/src/H5LaccProp.h
parent368089572a079f0801ab7177aab2719d4cbd4e48 (diff)
parent98090fe3b08a0ff85ae9bc93218a14017a6f37fe (diff)
downloadhdf5-f7711df680f2ccd07f23223deccb217440ec3788.zip
hdf5-f7711df680f2ccd07f23223deccb217440ec3788.tar.gz
hdf5-f7711df680f2ccd07f23223deccb217440ec3788.tar.bz2
Merge pull request #334 in HDFFV/hdf5 from ~BMRIBLER/hdf5_bmr_cpp2:develop to develop
* commit '98090fe3b08a0ff85ae9bc93218a14017a6f37fe': Purpose: Add new C++ wrappers Description: Added wrappers for H5Iis_valid, H5Ps/get_nlinks, H5Tget_create_plist, H5Oopen, H5Oclose and H5Pset_virtual
Diffstat (limited to 'c++/src/H5LaccProp.h')
-rw-r--r--c++/src/H5LaccProp.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/c++/src/H5LaccProp.h b/c++/src/H5LaccProp.h
index 8bcdd64..1cb80f7 100644
--- a/c++/src/H5LaccProp.h
+++ b/c++/src/H5LaccProp.h
@@ -46,6 +46,13 @@ class H5_DLLCPP LinkAccPropList : public PropList {
// using the property list id.
LinkAccPropList (const hid_t plist_id);
+ // Sets the number of soft or user-defined links that can be
+ // traversed before a failure occurs.
+ void setNumLinks(size_t nlinks) const;
+
+ // Gets the number of soft or user-defined link traversals allowed
+ size_t getNumLinks() const;
+
// Noop destructor
virtual ~LinkAccPropList();