Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
type(ESMF_RouteHandle), | intent(in) | :: | rhandleIn | |||
type(ESMF_RouteHandle), | intent(inout) | :: | rhandleOut | |||
integer, | intent(out), | optional | :: | rc |
subroutine ESMF_RouteHandleCopyThis(rhandleIn, rhandleOut, rc) ! ! !ARGUMENTS: type(ESMF_RouteHandle), intent(in) :: rhandleIn type(ESMF_RouteHandle), intent(inout) :: rhandleOut integer, intent(out), optional :: rc ! ! ! !DESCRIPTION: ! Copy RouteHandle this member. Do not set init code. ! ! The arguments are: ! \begin{description} ! \item[rhandleIn] ! Input {\tt ESMF\_RouteHandle} object. ! \item[rhandleOut] ! Output {\tt ESMF\_RouteHandle} object. ! \item[{[rc]}] ! Return code; equals {\tt ESMF\_SUCCESS} if there are no errors. ! \end{description} ! !EOPI !------------------------------------------------------------------------------ integer :: localrc ! local return code ! Assume failure until success if (present(rc)) rc = ESMF_RC_NOT_IMPL localrc = ESMF_RC_NOT_IMPL ! Copy this member rhandleOut%this = rhandleIn%this ! Return success if (present(rc)) rc = ESMF_SUCCESS end subroutine ESMF_RouteHandleCopyThis