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