summaryrefslogtreecommitdiffstats
path: root/c++/src/H5File.h
diff options
context:
space:
mode:
authorRaymond Lu <songyulu@hdfgroup.org>2004-06-24 22:19:05 (GMT)
committerRaymond Lu <songyulu@hdfgroup.org>2004-06-24 22:19:05 (GMT)
commitac54089f54775e12acf235e22b2595a884a0d470 (patch)
tree835ebb484849185f18168c8904e520c1c66c97df /c++/src/H5File.h
parent097510137d908c35ea112012e4df0fadea50ee06 (diff)
downloadhdf5-ac54089f54775e12acf235e22b2595a884a0d470.zip
hdf5-ac54089f54775e12acf235e22b2595a884a0d470.tar.gz
hdf5-ac54089f54775e12acf235e22b2595a884a0d470.tar.bz2
[svn-r8739] Purpose: New feature and Bug fix
Description: 1. Added H5Fget_filesize and test(in file_handle.c) which returns the actual file size of an opened file. Also added to C++ API and test. 2. The error tests were messed up in test/Makefile.in. Solution: 1. Call H5FDget_eof to return file size. 2. Corrected. Platforms tested: h5committest Misc. update: RELEASE.txt
Diffstat (limited to 'c++/src/H5File.h')
-rw-r--r--c++/src/H5File.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/c++/src/H5File.h b/c++/src/H5File.h
index b3edbb6..e19f3f8 100644
--- a/c++/src/H5File.h
+++ b/c++/src/H5File.h
@@ -72,6 +72,9 @@ class H5_DLLCPP H5File : public IdComponent, public CommonFG {
// Retrieves a dataspace with the region pointed to selected.
DataSpace getRegion(void *ref, H5R_type_t ref_type = H5R_DATASET_REGION) const;
+ // Retrieves the file size of an opened file.
+ haddr_t getFileSize() const;
+
// Reopens this file
void reopen();