Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
type(ESMF_CplComp) | :: | cpl | ||||
integer, | intent(out) | :: | rc |
subroutine CPLR_SetServices(cpl, rc) type(ESMF_CplComp) :: cpl integer, intent(out) :: rc call ESMF_CplCompSetEntryPoint(cpl, ESMF_METHOD_INITIALIZE, my_init, rc=rc) call ESMF_CplCompSetEntryPoint(cpl, ESMF_METHOD_RUN, my_run, rc=rc) call ESMF_CplCompSetEntryPoint(cpl, ESMF_METHOD_FINALIZE, my_final, rc=rc) end subroutine CPLR_SetServices