diff options
author | Raymond Lu <songyulu@hdfgroup.org> | 2001-11-02 19:45:25 (GMT) |
---|---|---|
committer | Raymond Lu <songyulu@hdfgroup.org> | 2001-11-02 19:45:25 (GMT) |
commit | ec59e5f52aa06ed8267f8df2281f322fb6b9ed78 (patch) | |
tree | 578e1aeebad4df72c1b7e708c6f1358f848e97aa /c++ | |
parent | 651c4b1064a0b4a709a2ed4219840cf50ed88eea (diff) | |
download | hdf5-ec59e5f52aa06ed8267f8df2281f322fb6b9ed78.zip hdf5-ec59e5f52aa06ed8267f8df2281f322fb6b9ed78.tar.gz hdf5-ec59e5f52aa06ed8267f8df2281f322fb6b9ed78.tar.bz2 |
[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.
Diffstat (limited to 'c++')
-rw-r--r-- | c++/src/H5DcreatProp.cpp | 2 | ||||
-rw-r--r-- | c++/src/H5DxferProp.cpp | 2 | ||||
-rw-r--r-- | c++/src/H5FaccProp.cpp | 2 | ||||
-rw-r--r-- | c++/src/H5FcreatProp.cpp | 2 | ||||
-rw-r--r-- | c++/src/H5PropList.cpp | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/c++/src/H5DcreatProp.cpp b/c++/src/H5DcreatProp.cpp index ec5a10a..4f3d2e4 100644 --- a/c++/src/H5DcreatProp.cpp +++ b/c++/src/H5DcreatProp.cpp @@ -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 ) {} diff --git a/c++/src/H5DxferProp.cpp b/c++/src/H5DxferProp.cpp index 96444aa..da67d4c 100644 --- a/c++/src/H5DxferProp.cpp +++ b/c++/src/H5DxferProp.cpp @@ -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) {} diff --git a/c++/src/H5FaccProp.cpp b/c++/src/H5FaccProp.cpp index 3ade17e..4eae889 100644 --- a/c++/src/H5FaccProp.cpp +++ b/c++/src/H5FaccProp.cpp @@ -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 ) {} diff --git a/c++/src/H5FcreatProp.cpp b/c++/src/H5FcreatProp.cpp index 61abfb5..7d6fc62 100644 --- a/c++/src/H5FcreatProp.cpp +++ b/c++/src/H5FcreatProp.cpp @@ -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 ) {} diff --git a/c++/src/H5PropList.cpp b/c++/src/H5PropList.cpp index 38bf355..c489983 100644 --- a/c++/src/H5PropList.cpp +++ b/c++/src/H5PropList.cpp @@ -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. |