diff options
author | Binh-Minh Ribler <bmribler@hdfgroup.org> | 2005-03-14 19:32:26 (GMT) |
---|---|---|
committer | Binh-Minh Ribler <bmribler@hdfgroup.org> | 2005-03-14 19:32:26 (GMT) |
commit | 49fa4563ef21009a05c11da5e05d0e71d2c24366 (patch) | |
tree | 73f57a583375fef27b3616e0febaa786394c7ae5 /c++/src/H5AbstractDs.h | |
parent | 7e6577fdea9f78e4b140f2b1c7684c9cec7d9a7e (diff) | |
download | hdf5-49fa4563ef21009a05c11da5e05d0e71d2c24366.zip hdf5-49fa4563ef21009a05c11da5e05d0e71d2c24366.tar.gz hdf5-49fa4563ef21009a05c11da5e05d0e71d2c24366.tar.bz2 |
[svn-r10212] Purpose: Added more wrappers
Description:
Added the following to the C++ library
+ overloaded functions:
string CommonFG::getObjnameByIdx(hsize_t idx)
H5T_order_t AtomType::getOrder()
+ wrappers for H5*close
+ wrappers for H5Arename, H5Aget_storage_size, and H5Dget_storage_size
Platforms tested:
Linux 2.4 (heping)
AIX 5.1 (copper)
SunOS 5.8 64-bit (sol)
Diffstat (limited to 'c++/src/H5AbstractDs.h')
-rw-r--r-- | c++/src/H5AbstractDs.h | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/c++/src/H5AbstractDs.h b/c++/src/H5AbstractDs.h index 8f56e2b..9cf6d57 100644 --- a/c++/src/H5AbstractDs.h +++ b/c++/src/H5AbstractDs.h @@ -30,26 +30,31 @@ class H5_DLLCPP AbstractDs : public H5Object { // Note that this datatype is a generic one and can only be accessed // via generic member functions, i.e., member functions belong // to DataType. To get specific datatype, i.e. EnumType, FloatType, - // etc..., use the specific functions, that follow, instead . + // etc..., use the specific functions, that follow, instead. DataType getDataType() const; - // Gets a copy of the specific datatype of this abstract dataset + // Gets a copy of the specific datatype of this abstract dataset. EnumType getEnumType() const; CompType getCompType() const; IntType getIntType() const; FloatType getFloatType() const; StrType getStrType() const; - // Gets the dataspace of this abstract dataset - pure virtual + // Gets the dataspace of this abstract dataset - pure virtual. virtual DataSpace getSpace() const = 0; // Gets the class of the datatype that is used by this abstract - // dataset + // dataset. H5T_class_t getTypeClass() const; + // Returns the amount of storage size required for this abstract + // dataset - pure virtual. + virtual hsize_t getStorageSize() const = 0; + // Copy constructor AbstractDs( const AbstractDs& original ); + // Destructor virtual ~AbstractDs(); protected: |