Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
type(ESMF_FieldBundle), | pointer | :: | bundlep | |||
integer, | intent(out), | optional | :: | rc |
subroutine f_esmf_bundledestroy(bundlep, rc) use ESMF_UtilTypesMod ! ESMF generic types class use ESMF_BaseMod ! ESMF base class use ESMF_FieldBundleMod implicit none type(ESMF_FieldBundle), pointer :: bundlep integer, intent(out), optional :: rc ! Initialize return codes; assume routines not initialized if (present(rc)) rc = ESMF_RC_NOT_IMPL call ESMF_FieldBundleDestroy(bundlep, rc=rc) end subroutine f_esmf_bundledestroy