[svn-r5270] Purpose: bug fix

Description:
    The default constructor of H5File was missing.  It's now added.

Platforms:
    SunOS 5.7 (arabica)
    Linux 6.2 (eirene)
    IRIX 6.5.11 (modi4)
This commit is contained in:
Binh-Minh Ribler
2002-04-26 07:09:17 -05:00
parent 7ab650be9f
commit bb07809e41
2 changed files with 6 additions and 0 deletions

View File

@@ -23,6 +23,9 @@
namespace H5 {
#endif
// Default constructor
H5File::H5File() : IdComponent() {}
// Creates or opens an HDF5 file depending on the parameter flags.
H5File::H5File( const string& name, unsigned int flags, const FileCreatPropList& create_plist, const FileAccPropList& access_plist ) : IdComponent()
{