From ec59e5f52aa06ed8267f8df2281f322fb6b9ed78 Mon Sep 17 00:00:00 2001 From: Raymond Lu Date: Fri, 2 Nov 2001 14:45:25 -0500 Subject: [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. --- c++/src/H5DcreatProp.cpp | 2 +- c++/src/H5DxferProp.cpp | 2 +- c++/src/H5FaccProp.cpp | 2 +- c++/src/H5FcreatProp.cpp | 2 +- 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. -- cgit v0.12