mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-03-25 17:00:45 +08:00
[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:
parent
651c4b1064
commit
ec59e5f52a
@ -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 ) {}
|
||||
|
@ -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) {}
|
||||
|
@ -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 ) {}
|
||||
|
@ -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 ) {}
|
||||
|
@ -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.
|
||||
|
Loading…
x
Reference in New Issue
Block a user