diff options
author | Binh-Minh Ribler <bmribler@hdfgroup.org> | 2018-05-12 23:54:56 (GMT) |
---|---|---|
committer | Binh-Minh Ribler <bmribler@hdfgroup.org> | 2018-05-12 23:54:56 (GMT) |
commit | 5a2bc3f0885b5e7a6e3f35b2373e56543d27c339 (patch) | |
tree | 3a8a0acbbb12c93a06abf36e77e8fcd05481a4fc /c++/src/H5DataSet.cpp | |
parent | 9b953884c57d89557df93af3e0145365acb5ea89 (diff) | |
parent | e5b337dd881b60a5300675f6b30ca3429020acbe (diff) | |
download | hdf5-5a2bc3f0885b5e7a6e3f35b2373e56543d27c339.zip hdf5-5a2bc3f0885b5e7a6e3f35b2373e56543d27c339.tar.gz hdf5-5a2bc3f0885b5e7a6e3f35b2373e56543d27c339.tar.bz2 |
Merge pull request #1056 in HDFFV/hdf5 from ~BMRIBLER/hdf5_1_8_bmr:hdf5_1_8 to hdf5_1_8
* commit 'e5b337dd881b60a5300675f6b30ca3429020acbe':
Code cleanup Description: The function getNumAttrs should be in H5Location so that when an attribute is the location, the function will get the number of attributes belong to the object, which the invoking attribute is attached to. Platforms tested: Linux/64 (jelly) Linux/64 (platypus) Darwin (osx1010test)
Updated for 1.8.21
Added C++ wrappers Description: - Added the following wrappers to class H5::H5Location: + H5Lcreate_soft: changed name from newLink to link // Creates a soft link from link_name to target_name. void link(const char *target_name, const char *link_name,...) void link(const H5std_string& target_name,...)
Diffstat (limited to 'c++/src/H5DataSet.cpp')
-rw-r--r-- | c++/src/H5DataSet.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/c++/src/H5DataSet.cpp b/c++/src/H5DataSet.cpp index 1dce28e..f8277f9 100644 --- a/c++/src/H5DataSet.cpp +++ b/c++/src/H5DataSet.cpp @@ -23,6 +23,8 @@ #include "H5Exception.h" #include "H5IdComponent.h" #include "H5PropList.h" +#include "H5StrcreatProp.h" +#include "H5LcreatProp.h" #include "H5LaccProp.h" #include "H5Location.h" #include "H5Object.h" |