diff options
author | Binh-Minh Ribler <bmribler@hdfgroup.org> | 2006-06-05 16:17:36 (GMT) |
---|---|---|
committer | Binh-Minh Ribler <bmribler@hdfgroup.org> | 2006-06-05 16:17:36 (GMT) |
commit | 32d3e6f04f2cc68d05fd59c567c2bdf4e4a50443 (patch) | |
tree | 7dfbe078ff910c575768c51fb1c38c0f4f8c1f58 /c++/src/H5File.h | |
parent | f5a16e9bfa5ee701d6ee40ddd98cfcb03aad6e1b (diff) | |
download | hdf5-32d3e6f04f2cc68d05fd59c567c2bdf4e4a50443.zip hdf5-32d3e6f04f2cc68d05fd59c567c2bdf4e4a50443.tar.gz hdf5-32d3e6f04f2cc68d05fd59c567c2bdf4e4a50443.tar.bz2 |
[svn-r12404] Purpose: Fix typos/formats
Description:
Fixed typos and re-arranged some functions to be in sync with 1.6.
Platforms tested:
Linux 2.4 (heping)
SunOS 5.9 (shanti)
AIX 5.1 (copper)
Diffstat (limited to 'c++/src/H5File.h')
-rw-r--r-- | c++/src/H5File.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/c++/src/H5File.h b/c++/src/H5File.h index ddb405a..e489271 100644 --- a/c++/src/H5File.h +++ b/c++/src/H5File.h @@ -36,8 +36,8 @@ class H5_DLLCPP H5File : public IdComponent, public CommonFG { void openFile(const char* name, unsigned int flags, const FileAccPropList& access_plist = FileAccPropList::DEFAULT); - // Close this file. - virtual void close(); + // Close this file. + virtual void close(); // Flushes all buffers associated with this file to disk void flush(H5F_scope_t scope) const; @@ -51,8 +51,8 @@ class H5_DLLCPP H5File : public IdComponent, public CommonFG { // Gets the name of this file. H5std_string getFileName() const; - // Retrieves the file size of an opened file. - hsize_t getFileSize() const; + // Retrieves the file size of an opened file. + hsize_t getFileSize() const; // Returns the amount of free space in the file. hssize_t getFreeSpace() const; @@ -96,7 +96,7 @@ class H5_DLLCPP H5File : public IdComponent, public CommonFG { virtual H5std_string fromClass () const { return("H5File"); } // Throw file exception. - virtual void throwException(const H5std_string func_name, const H5std_string msg) const; + virtual void throwException(const H5std_string& func_name, const H5std_string& msg) const; // Gets the file id virtual hid_t getLocId() const; |