Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
type(ESMF_Base), | intent(in) | :: | base | |||
integer, | intent(out) | :: | id | |||
integer, | intent(out), | optional | :: | rc |
subroutine ESMF_BaseGetId(base, id, rc) ! ! !ARGUMENTS: type(ESMF_Base), intent(in) :: base integer, intent(out) :: id integer, intent(out), optional :: rc ! ! !DESCRIPTION: ! Return the ESMF object Id. ! ! The arguments are: ! \begin{description} ! \item[base] ! Any ESMF type. ! \item[id] ! The object ID of the Base object. ! \item[{[rc]}] ! Return code; equals {\tt ESMF\_SUCCESS} if there are no errors. ! \end{description} ! !EOPI integer :: localrc ! Initialize return code; assume routine not implemented if (present(rc)) rc = ESMF_RC_NOT_IMPL localrc = ESMF_RC_NOT_IMPL call c_ESMC_GetId (base , id, localrc) if (present(rc)) rc = localrc end subroutine ESMF_BaseGetId