Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
type(ESMF_PointList), | intent(inout) | :: | pointlist | |||
integer, | intent(out), | optional | :: | rc |
subroutine ESMF_PointListSetInitCreated(pointlist, rc) ! ! !ARGUMENTS: type(ESMF_PointList), intent(inout) :: pointlist integer, intent(out), optional :: rc ! ! ! !DESCRIPTION: ! Set init code in PointList object to "CREATED". ! ! The arguments are: ! \begin{description} ! \item[pointlist] ! Specified {\tt ESMF\_PointList} object. ! \item[{[rc]}] ! Return code; equals {\tt ESMF\_SUCCESS} if there are no errors. ! \end{description} ! !EOPI !------------------------------------------------------------------------------ ! initialize return code; assume routine not implemented if (present(rc)) rc = ESMF_RC_NOT_IMPL ! Set init code ESMF_INIT_SET_CREATED(pointlist) ! Return successfully if (present(rc)) rc = ESMF_SUCCESS end subroutine ESMF_PointListSetInitCreated