Retrieves the parent class of a property class
Procedure:
H5P_GET_CLASS_PARENT ( pcid )
Signature:
hid_t H5Pget_class_parent(
hid_t pcid
)
Fortran90 Interface: h5pget_class_parent_f
SUBROUTINE h5pget_class_parent_f(prp_id, parent_id, hdferr)
IMPLICIT NONE
INTEGER(HID_T), INTENT(IN) :: prp_id ! Property list identifier
INTEGER(HID_T), INTENT(OUT) :: parent_id ! Parent class property list
! identifier
INTEGER, INTENT(OUT) :: hdferr ! Error code
! 0 on success and -1 on failure
END SUBROUTINE h5pget_class_parent_f
Parameters:
hid_t pcid
IN: Identifier of the property class to query
Description:
H5P_GET_CLASS_PARENT retrieves an identifier for the parent class of a property class.
Returns:
Success: a valid parent class object identifier
Failure: a negative value
Example:
History:
--- Last Modified: August 12, 2019 | 11:34 AM