[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

@@ -8,6 +8,9 @@ namespace H5 {
class __DLLCPP__ H5File : public IdComponent, public CommonFG {
public:
// Default constructor
H5File();
// copy constructor: makes a copy of the original H5File object.
H5File(const H5File& original );