[svn-r4583]

Purpose:
    Switch from old property list to new generic property list.
Description:
    Changed C++ according to the new generic property list.
Platforms tested:
    FreeBSD, SunOS 5.7.
This commit is contained in:
Raymond Lu 2001-11-02 14:45:25 -05:00
parent 651c4b1064
commit ec59e5f52a
5 changed files with 5 additions and 5 deletions

View File

@ -13,7 +13,7 @@
namespace H5 {
#endif
const DSetCreatPropList DSetCreatPropList::DEFAULT( H5P_NO_CLASS );
const DSetCreatPropList DSetCreatPropList::DEFAULT( H5P_DEFAULT );
// Copy constructor: makes a copy of the original DSetCreatPropList object;
DSetCreatPropList::DSetCreatPropList( const DSetCreatPropList& orig ) : PropList( orig ) {}

View File

@ -11,7 +11,7 @@
namespace H5 {
#endif
const DSetMemXferPropList DSetMemXferPropList::DEFAULT( H5P_NO_CLASS );
const DSetMemXferPropList DSetMemXferPropList::DEFAULT( H5P_DEFAULT );
// Creates a dataset memory and transfer property list
DSetMemXferPropList::DSetMemXferPropList() : PropList( H5P_DATASET_XFER) {}

View File

@ -11,7 +11,7 @@
namespace H5 {
#endif
const FileAccPropList FileAccPropList::DEFAULT( H5P_NO_CLASS );
const FileAccPropList FileAccPropList::DEFAULT( H5P_DEFAULT );
// Creates a file access property list
FileAccPropList::FileAccPropList() : PropList( H5P_FILE_ACCESS ) {}

View File

@ -11,7 +11,7 @@
namespace H5 {
#endif
const FileCreatPropList FileCreatPropList::DEFAULT( H5P_NO_CLASS );
const FileCreatPropList FileCreatPropList::DEFAULT( H5P_DEFAULT );
// Creates a file create property list
FileCreatPropList::FileCreatPropList() : PropList( H5P_FILE_CREATE ) {}

View File

@ -11,7 +11,7 @@
namespace H5 {
#endif
const PropList PropList::DEFAULT( H5P_NO_CLASS );
const PropList PropList::DEFAULT( H5P_DEFAULT );
// Default constructor - set id to 0 by default here but may be set
// to a valid one, if any, by a subclass constructor.