Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
type(ESMF_Config), | intent(inout) | :: | config | |||
integer, | intent(out) | :: | lineCount | |||
integer, | intent(out) | :: | columnCount | |||
character(len=*), | intent(in) | :: | label | |||
integer, | intent(out) | :: | rc |
subroutine f_esmf_configgetdim(config, lineCount, columnCount, label, rc) use ESMF_UtilTypesMod ! ESMF base class use ESMF_BaseMod ! ESMF base class use ESMF_ConfigMod implicit none type(ESMF_Config), intent(inout) :: config integer, intent(out) :: lineCount integer, intent(out) :: columnCount character(len=*), intent(in) :: label integer, intent(out) :: rc ! Initialize return code; assume routine not implemented rc = ESMF_RC_NOT_IMPL call ESMF_ConfigGetDim(config, lineCount, columnCount, label=label, rc=rc) end subroutine f_esmf_configgetdim