diff options
author | Binh-Minh Ribler <bmribler@hdfgroup.org> | 2004-07-08 19:48:45 (GMT) |
---|---|---|
committer | Binh-Minh Ribler <bmribler@hdfgroup.org> | 2004-07-08 19:48:45 (GMT) |
commit | c3bfac06392131adaec4744d50274e75638f76b6 (patch) | |
tree | 3eff702dce697ffada3971d54ec94294a11a1543 /c++/src/H5File.h | |
parent | c19e495c00193859a9cb3d0d25b52e6d9b379784 (diff) | |
download | hdf5-c3bfac06392131adaec4744d50274e75638f76b6.zip hdf5-c3bfac06392131adaec4744d50274e75638f76b6.tar.gz hdf5-c3bfac06392131adaec4744d50274e75638f76b6.tar.bz2 |
[svn-r8837] Purpose: Update doc and fix minor bug
Description:
H5IdComponent.cpp: initialized a pointer to NULL
H5Object.cpp: removed functions being added by mistake
Update function headers for the rest.
Platforms tested:
SunOS 5.7 (arabica)
Linux 2.4 (eirene)
Diffstat (limited to 'c++/src/H5File.h')
-rw-r--r-- | c++/src/H5File.h | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/c++/src/H5File.h b/c++/src/H5File.h index d688e6f..a6f40dd 100644 --- a/c++/src/H5File.h +++ b/c++/src/H5File.h @@ -73,23 +73,24 @@ class H5_DLLCPP H5File : public IdComponent, public CommonFG { DataSpace getRegion(void *ref, H5R_type_t ref_type = H5R_DATASET_REGION) const; // Retrieves the file size of an opened file. - herr_t getFileSize(hsize_t *size) const; + haddr_t getFileSize() const; - // Reopens this file + // Reopens this file. void reopen(); - // Gets the creation property list of this file + // Gets the creation property list of this file. FileCreatPropList getCreatePlist() const; - // Gets the access property list of this file + // Gets the access property list of this file. FileAccPropList getAccessPlist() const; - // Throw file exception + // Throw file exception. virtual void throwException(const string func_name, const string msg) const; - // Used by the API to appropriately close a file + // Used by the API to appropriately close a file. void p_close() const; + // H5File destructor. virtual ~H5File(); private: |