diff options
author | Binh-Minh Ribler <bmribler@hdfgroup.org> | 2009-07-27 04:00:17 (GMT) |
---|---|---|
committer | Binh-Minh Ribler <bmribler@hdfgroup.org> | 2009-07-27 04:00:17 (GMT) |
commit | c1ad3676c4b56b80663d271ac367a65cc41c39ab (patch) | |
tree | 42f19502941ff1d02d45b92a7f8a0a3f6945002e /c++/src/H5AbstractDs.h | |
parent | 405ea51bb7728dc696e29694b22e81dc4b6ce2c1 (diff) | |
download | hdf5-c1ad3676c4b56b80663d271ac367a65cc41c39ab.zip hdf5-c1ad3676c4b56b80663d271ac367a65cc41c39ab.tar.gz hdf5-c1ad3676c4b56b80663d271ac367a65cc41c39ab.tar.bz2 |
[svn-r17238] Purpose: Fix bug and improve readability
Description:
- Revised DataSet::write to pass in correct string buffer
- Added member function DataSet::getInMemDataSize() to simplify
getting the dataset's data size in memory.
- Added private functions for reading fixed- and variable-length
string data: p_read_fixed_len and p_read_variable_len.
- Added tests to write/read array of strings to datasets.
Platforms tested:
Linux/32 2.6 (jam)
FreeBSD/64 6.3 (liberty)
SunOS 5.10 (linew)
Diffstat (limited to 'c++/src/H5AbstractDs.h')
-rw-r--r-- | c++/src/H5AbstractDs.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/c++/src/H5AbstractDs.h b/c++/src/H5AbstractDs.h index c98e5e1..1d04d6c 100644 --- a/c++/src/H5AbstractDs.h +++ b/c++/src/H5AbstractDs.h @@ -51,6 +51,9 @@ class H5_DLLCPP AbstractDs { StrType getStrType() const; VarLenType getVarLenType() const; + // Gets the size in memory of this abstract dataset. + virtual size_t getInMemDataSize() const = 0; + // Gets the dataspace of this abstract dataset - pure virtual. virtual DataSpace getSpace() const = 0; |