ESMF_RouteHandleGetThis Subroutine

public subroutine ESMF_RouteHandleGetThis(rh, this, rc)

Arguments

Type IntentOptional Attributes Name
type(ESMF_RouteHandle), intent(in) :: rh
type(ESMF_Pointer), intent(out) :: this
integer, intent(inout), optional :: rc

Source Code

subroutine ESMF_RouteHandleGetThis(rh, this, rc)
! ARGUMENTS:
  type(ESMF_RouteHandle), intent(in) :: rh
  type(ESMF_Pointer), intent(out) :: this
  integer, intent(inout), optional :: rc
!
! !DESCRIPTION:
!     Internal access routine for C++ pointer.
!
!     The arguments are:
!     \begin{description}
!     \item[rh]
!          Specified {\tt ESMF\_RouteHandle} object.
!     \item[this]
!          C++ pointer.
!     \item[{[rc]}]
!          Return code; equals {\tt ESMF\_SUCCESS} if there are no errors.
!     \end{description}
!
!EOPI
!------------------------------------------------------------------------------

  if (present(rc)) rc = ESMF_RC_NOT_IMPL
  this = rh%this
  if (present(rc)) rc = ESMF_SUCCESS
end subroutine ESMF_RouteHandleGetThis