UserCpl_SetServices Subroutine

public subroutine UserCpl_SetServices(ccomp, rc)

Arguments

Type IntentOptional Attributes Name
type(ESMF_CplComp) :: ccomp
integer, intent(out) :: rc

Source Code

    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