summaryrefslogtreecommitdiffstats
path: root/c++/src/H5DataSet.h
diff options
context:
space:
mode:
authorBinh-Minh Ribler <bmribler@hdfgroup.org>2008-10-27 03:02:39 (GMT)
committerBinh-Minh Ribler <bmribler@hdfgroup.org>2008-10-27 03:02:39 (GMT)
commit992471499289aff68c7eb457e346462cc41a1ee5 (patch)
tree4ff6c6e0fe6cedc417f17f83daf12cbcd3ec3d82 /c++/src/H5DataSet.h
parentc16cadef0075a85d838b63e0af9d3fb56a21f8fd (diff)
downloadhdf5-992471499289aff68c7eb457e346462cc41a1ee5.zip
hdf5-992471499289aff68c7eb457e346462cc41a1ee5.tar.gz
hdf5-992471499289aff68c7eb457e346462cc41a1ee5.tar.bz2
[svn-r15960] Description:
Oops, I accidentally only did "svn commit" instead of "svn commit -m" as instructed. "ported revisions 15958 to 15959 (Added missing wrappers for H5Rdereference) from trunk."
Diffstat (limited to 'c++/src/H5DataSet.h')
-rw-r--r--c++/src/H5DataSet.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/c++/src/H5DataSet.h b/c++/src/H5DataSet.h
index f5d13d0..f26d775 100644
--- a/c++/src/H5DataSet.h
+++ b/c++/src/H5DataSet.h
@@ -85,8 +85,9 @@ class H5_DLLCPP DataSet : public H5Object, public AbstractDs {
virtual H5std_string fromClass () const { return("DataSet"); }
// Creates a dataset by way of dereference.
- DataSet(H5Object& obj, void* ref);
- DataSet(H5File& file, void* ref);
+ DataSet(H5Object& obj, const void* ref, H5R_type_t ref_type = H5R_OBJECT);
+ DataSet(H5File& h5file, const void* ref, H5R_type_t ref_type = H5R_OBJECT);
+ DataSet(Attribute& attr, const void* ref, H5R_type_t ref_type = H5R_OBJECT);
// Default constructor.
DataSet();