diff options
author | Binh-Minh Ribler <bmribler@hdfgroup.org> | 2000-12-23 13:17:32 (GMT) |
---|---|---|
committer | Binh-Minh Ribler <bmribler@hdfgroup.org> | 2000-12-23 13:17:32 (GMT) |
commit | d24bacb8a47f945e6919f067e8057ad30012bd5a (patch) | |
tree | 2844b08018435b9d33f68ef4b787d5434db66d5a /c++/src/H5CommonFG.h | |
parent | 45c5dd949f7dd4549dc5996ff8395652ef3d9dda (diff) | |
download | hdf5-d24bacb8a47f945e6919f067e8057ad30012bd5a.zip hdf5-d24bacb8a47f945e6919f067e8057ad30012bd5a.tar.gz hdf5-d24bacb8a47f945e6919f067e8057ad30012bd5a.tar.bz2 |
[svn-r3199]
Purpose: bug fix
Description:
I found a couple of places where virtual destructors were missing
and could cause small memory leaks. Also, some destructors were
not virtual when they should be.
Solution:
- added virtual destructors, which also free dynamically allocated
memory
- added virtual to several destructors
- also, fixed several typos
Platforms tested:
Solaris 2.7 (arabica)
Diffstat (limited to 'c++/src/H5CommonFG.h')
-rw-r--r-- | c++/src/H5CommonFG.h | 34 |
1 files changed, 16 insertions, 18 deletions
diff --git a/c++/src/H5CommonFG.h b/c++/src/H5CommonFG.h index 2eb532d..0fdf3d5 100644 --- a/c++/src/H5CommonFG.h +++ b/c++/src/H5CommonFG.h @@ -1,8 +1,6 @@ -/* -This class is a prototype class. Most of its member functions are those -that are common to both H5File and Group. H5File and Group will inherit -these functions. -*/ +// CommonFG is a protocol class. Its existence is simply to provide the +// common services that are provided by H5File and Group. The file or +// group in the context of this class is referred to as 'location'. #ifndef _CommonFG_H #define _CommonFG_H @@ -48,27 +46,28 @@ class CommonFG { void move( const string& src, const string& dst ) const; void move( const char* src, const char* dst ) const; - // Returns information about an object + // Returns information about an HDF5 object, given by its name, + // at this location. void getObjinfo( const string& name, hbool_t follow_link, H5G_stat_t& statbuf ) const; void getObjinfo( const char* name, hbool_t follow_link, H5G_stat_t& statbuf ) const; - // Returns the name of the object that the symbolic link points to. + // Returns the name of the HDF5 object that the symbolic link points to. string getLinkval( const string& name, size_t size ) const; string getLinkval( const char* name, size_t size ) const; - // Sets the comment for an object specified by its name + // Sets the comment for an HDF5 object specified by its name void setComment( const string& name, const string& comment ) const; void setComment( const char* name, const char* comment ) const; - // Retrieves comment for specified object + // Retrieves comment for the HDF5 object specified by its name string getComment( const string& name, size_t bufsize ) const; string getComment( const char* name, size_t bufsize ) const; - // Mounts the file 'child' onto this group + // Mounts the file 'child' onto this location void mount( const string& name, H5File& child, PropList& plist ) const; void mount( const char* name, H5File& child, PropList& plist) const; - // Unmounts the file named 'name' from this parent group + // Unmounts the file named 'name' from this parent location void unmount( const string& name ) const; void unmount( const char* name ) const; @@ -77,27 +76,27 @@ class CommonFG { int iterateElems( const string& name, int *idx, H5G_iterate_t op, void *op_data ); int iterateElems( const char* name, int *idx, H5G_iterate_t op, void *op_data ); - // Opens a generic named datatype in this file + // Opens a generic named datatype in this location DataType openDataType( const string& name ) const; DataType openDataType( const char* name ) const; - // Opens a named enumeration datatype in this file + // Opens a named enumeration datatype in this location EnumType openEnumType( const string& name ) const; EnumType openEnumType( const char* name ) const; - // Opens a named compound datatype in this file + // Opens a named compound datatype in this location CompType openCompType( const string& name ) const; CompType openCompType( const char* name ) const; - // Opens a named integer datatype in this file + // Opens a named integer datatype in this location IntType openIntType( const string& name ) const; IntType openIntType( const char* name ) const; - // Opens a named floating-point datatype in this file + // Opens a named floating-point datatype in this location FloatType openFloatType( const string& name ) const; FloatType openFloatType( const char* name ) const; - // Opens a named string datatype in this file + // Opens a named string datatype in this location StrType openStrType( const string& name ) const; StrType openStrType( const char* name ) const; @@ -105,7 +104,6 @@ class CommonFG { virtual void throwException() const = 0; CommonFG(); - virtual ~CommonFG(); private: |