Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
type(ESMF_Base), | intent(in) | :: | base | |||
character(len=*), | intent(in), | optional | :: | options | ||
integer, | intent(out), | optional | :: | rc |
subroutine ESMF_BaseValidate(base, options, rc) ! ! !ARGUMENTS: type(ESMF_Base), intent(in) :: base character(len=*), intent(in), optional :: options integer, intent(out), optional :: rc ! ! !DESCRIPTION: ! Interface to call through to C++ and validate base object values. ! ! The arguments are: ! \begin{description} ! \item[base] ! Any ESMF type. ! \item[options] ! Validate options. ! \item[{[rc]}] ! Return code; equals {\tt ESMF\_SUCCESS} if there are no errors. ! \end{description} ! ! !EOPI integer :: localrc character(len=ESMF_MAXSTR) :: opts ! Initialize return code; assume routine not implemented if (present(rc)) rc = ESMF_RC_NOT_IMPL localrc = ESMF_RC_NOT_IMPL ! Check init status of arguments ESMF_INIT_CHECK_DEEP(ESMF_BaseGetInit, base, rc) if (present(options)) then opts = options else opts = '' endif call c_ESMC_BaseValidate(base , opts, localrc) if (ESMF_LogFoundError(localrc, ESMF_ERR_PASSTHRU, & ESMF_CONTEXT, rcToReturn=rc)) return ! Return successfully if (present(rc)) rc = ESMF_SUCCESS end subroutine ESMF_BaseValidate