summaryrefslogtreecommitdiffstats
path: root/c++/src/H5AbstractDs.h
diff options
context:
space:
mode:
authorBinh-Minh Ribler <bmribler@hdfgroup.org>2013-03-29 04:03:20 (GMT)
committerBinh-Minh Ribler <bmribler@hdfgroup.org>2013-03-29 04:03:20 (GMT)
commit8461df0911aecf6665b4a19d4a66e4d11bc31e3c (patch)
tree7c732c6dd13fbb1b64c57b2753459760d2f7191e /c++/src/H5AbstractDs.h
parent54319cf88d1fece145a47960452ace57f3487f8f (diff)
downloadhdf5-8461df0911aecf6665b4a19d4a66e4d11bc31e3c.zip
hdf5-8461df0911aecf6665b4a19d4a66e4d11bc31e3c.tar.gz
hdf5-8461df0911aecf6665b4a19d4a66e4d11bc31e3c.tar.bz2
[svn-r23485] Purpose: Fix bug HDFFV-8067
Description: Applied the fix for HDFFV-8067 and the minor cleanups from the trunk. Platforms tested: Linux/32 2.6 (jam) with PGI compilers Linux/32 2.6 (jam) with GNU compilers Linux/64 2.6 (koala) with ICC compilers SunOS 5.10 (emu)
Diffstat (limited to 'c++/src/H5AbstractDs.h')
-rw-r--r--c++/src/H5AbstractDs.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/c++/src/H5AbstractDs.h b/c++/src/H5AbstractDs.h
index 1d04d6c..c5ffa36 100644
--- a/c++/src/H5AbstractDs.h
+++ b/c++/src/H5AbstractDs.h
@@ -65,7 +65,7 @@ class H5_DLLCPP AbstractDs {
// dataset - pure virtual.
virtual hsize_t getStorageSize() const = 0;
- // Returns this class name
+ // Returns this class name - pure virtual.
virtual H5std_string fromClass() const = 0;
// Copy constructor
@@ -82,7 +82,7 @@ class H5_DLLCPP AbstractDs {
AbstractDs( const hid_t ds_id );
private:
- // This member function is implemented by DataSet and Attribute.
+ // This member function is implemented by DataSet and Attribute - pure virtual.
virtual hid_t p_get_type() const = 0;
};
#ifndef H5_NO_NAMESPACE