diff options
author | Binh-Minh Ribler <bmribler@hdfgroup.org> | 2005-07-24 17:52:43 (GMT) |
---|---|---|
committer | Binh-Minh Ribler <bmribler@hdfgroup.org> | 2005-07-24 17:52:43 (GMT) |
commit | f208550696646adcc6e59e339745b0433e28f770 (patch) | |
tree | cd1c0a8b8283d5fa128d988bb335f85dfa390931 /c++/src/H5AbstractDs.h | |
parent | 3cba75f060cafc0171e48cc3cc2ef17a20bf82ea (diff) | |
download | hdf5-f208550696646adcc6e59e339745b0433e28f770.zip hdf5-f208550696646adcc6e59e339745b0433e28f770.tar.gz hdf5-f208550696646adcc6e59e339745b0433e28f770.tar.bz2 |
[svn-r11149] Purpose: Fix bugzilla #406
Description:
Added these missing member functions:
AbstractDs::getArrayType
AbstractDs::getVarLenType
CommonFG::openArrayType
CommonFG::openVarLenType
CompType::getMemberArrayType
CompType::getMemberVarLenType
Platforms tested:
Linux 2.4 (heping)
IRIX64 with -n32 (modi4)
Linux 2.4 w/PGI (colonelk)
Diffstat (limited to 'c++/src/H5AbstractDs.h')
-rw-r--r-- | c++/src/H5AbstractDs.h | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/c++/src/H5AbstractDs.h b/c++/src/H5AbstractDs.h index 9cf6d57..03b87ec 100644 --- a/c++/src/H5AbstractDs.h +++ b/c++/src/H5AbstractDs.h @@ -24,6 +24,14 @@ #ifndef H5_NO_NAMESPACE namespace H5 { #endif + +class ArrayType; +class CompType; +class EnumType; +class FloatType; +class IntType; +class StrType; +class VarLenType; class H5_DLLCPP AbstractDs : public H5Object { public: // Gets a copy the datatype of that this abstract dataset uses. @@ -34,11 +42,13 @@ class H5_DLLCPP AbstractDs : public H5Object { DataType getDataType() const; // Gets a copy of the specific datatype of this abstract dataset. - EnumType getEnumType() const; + ArrayType getArrayType() const; CompType getCompType() const; + EnumType getEnumType() const; IntType getIntType() const; FloatType getFloatType() const; StrType getStrType() const; + VarLenType getVarLenType() const; // Gets the dataspace of this abstract dataset - pure virtual. virtual DataSpace getSpace() const = 0; |