Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
type(ESMF_ArrayBundle), | intent(in) | :: | arrayBundle | |||
type(ESMF_Pointer), | intent(inout) | :: | this | |||
integer, | intent(inout), | optional | :: | rc |
subroutine ESMF_ArrayBundleGetThis(arrayBundle, this, rc) ! !ARGUMENTS: type(ESMF_ArrayBundle), intent(in) :: arrayBundle type(ESMF_Pointer), intent(inout) :: this integer, intent(inout), optional :: rc ! ! !DESCRIPTION: ! Internal access routine for C++ pointer. ! ! The arguments are: ! \begin{description} ! \item[arrayBundle] ! Specified {\tt ESMF\_ArrayBundle} 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 = arrayBundle%this if (present(rc)) rc = ESMF_SUCCESS end subroutine ESMF_ArrayBundleGetThis