Determines whether a property list is a member of a class
Procedure:
H5P_ISA_CLASS ( plist, pclass )
Signature:
htri_t H5Pisa_class(
hid_t plist,
hid_t pclass
)
Fortran90 Interface: h5pisa_class_f
SUBROUTINE h5pisa_class_f(plist, pclass, flag, hdferr)
IMPLICIT NONE
INTEGER(HID_T), INTENT(IN) :: plist ! Property list identifier
INTEGER(HID_T), INTENT(IN) :: pclass ! Class identifier
LOGICAL, INTENT(OUT) :: flag ! Logical flag
! >0 if a member
! 0 otherwise
INTEGER, INTENT(OUT) :: hdferr ! Error code
! 0 on success and -1 on failure
END SUBROUTINE h5pisa_class_f
Parameters:
hid_t plist | IN: Property list identifier |
hid_t pclass | IN: Property list class identifier |
Description:
H5P_ISA_CLASS checks to determine whether the property list plist
is a member of the property list class pclass
.
See Also:
Returns:
Returns a positive value if the specified property list is a member of the specified class.
Returns 0 if the specified property list is not a member of the specified class.
Returns a negative value when the function fails.
Example:
History:
Release | Change |
---|
| Call was added. |
--- Last Modified: July 28, 2020 | 11:05 AM