diff options
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; |