[svn-r12404] Purpose: Fix typos/formats
Description:
Fixed typos and re-arranged some functions to be in sync with 1.6.
Platforms tested:
Linux 2.4 (heping)
SunOS 5.9 (shanti)
AIX 5.1 (copper)
This commit is contained in:
@@ -262,7 +262,8 @@ H5D_fill_value_t DSetCreatPropList::isFillValueDefined()
|
||||
/// and the filter fails then the entire I/O operation fails.
|
||||
// Programmer Binh-Minh Ribler - 2000
|
||||
//--------------------------------------------------------------------------
|
||||
void DSetCreatPropList::setFilter( H5Z_filter_t filter_id, unsigned int flags, size_t cd_nelmts, const unsigned int cd_values[] ) const
|
||||
void DSetCreatPropList::setFilter( H5Z_filter_t filter_id, unsigned int flags,
|
||||
size_t cd_nelmts, const unsigned int cd_values[] ) const
|
||||
{
|
||||
herr_t ret_value = H5Pset_filter( id, filter_id, flags, cd_nelmts, cd_values );
|
||||
if( ret_value < 0 )
|
||||
@@ -328,9 +329,9 @@ int DSetCreatPropList::getNfilters() const
|
||||
///\par Description
|
||||
/// Failure occurs when \a filter_number is out of range.
|
||||
//--------------------------------------------------------------------------
|
||||
H5Z_filter_t DSetCreatPropList::getFilter(int filter_number, unsigned int &flags, size_t &cd_nelmts,
|
||||
unsigned int* cd_values, size_t namelen, char name[],
|
||||
unsigned int& filter_config) const
|
||||
H5Z_filter_t DSetCreatPropList::getFilter(int filter_number,
|
||||
unsigned int &flags, size_t &cd_nelmts, unsigned int* cd_values,
|
||||
size_t namelen, char name[], unsigned int& filter_config) const
|
||||
{
|
||||
H5Z_filter_t filter_id;
|
||||
filter_id = H5Pget_filter( id, filter_number, &flags, &cd_nelmts,
|
||||
@@ -359,9 +360,9 @@ H5Z_filter_t DSetCreatPropList::getFilter(int filter_number, unsigned int &flags
|
||||
///\exception H5::PropListIException
|
||||
// Programmer Binh-Minh Ribler - 2000
|
||||
//--------------------------------------------------------------------------
|
||||
void DSetCreatPropList::getFilterById(H5Z_filter_t filter_id, unsigned int &flags, size_t &cd_nelmts,
|
||||
unsigned int* cd_values, size_t namelen, char name[],
|
||||
unsigned int &filter_config) const
|
||||
void DSetCreatPropList::getFilterById(H5Z_filter_t filter_id,
|
||||
unsigned int &flags, size_t &cd_nelmts, unsigned int* cd_values,
|
||||
size_t namelen, char name[], unsigned int &filter_config) const
|
||||
{
|
||||
herr_t ret_value = H5Pget_filter_by_id(id, filter_id, &flags, &cd_nelmts,
|
||||
cd_values, namelen, name, &filter_config );
|
||||
@@ -393,7 +394,8 @@ void DSetCreatPropList::getFilterById(H5Z_filter_t filter_id, unsigned int &flag
|
||||
/// and the filter fails then the entire I/O operation fails.
|
||||
// Programmer Binh-Minh Ribler - 2000
|
||||
//--------------------------------------------------------------------------
|
||||
void DSetCreatPropList::modifyFilter( H5Z_filter_t filter_id, unsigned int flags, size_t cd_nelmts, const unsigned int cd_values[] ) const
|
||||
void DSetCreatPropList::modifyFilter( H5Z_filter_t filter_id, unsigned int
|
||||
flags, size_t cd_nelmts, const unsigned int cd_values[] ) const
|
||||
{
|
||||
herr_t ret_value = H5Pmodify_filter(id, filter_id, flags, cd_nelmts, cd_values);
|
||||
if( ret_value < 0 )
|
||||
|
||||
Reference in New Issue
Block a user