f_esmf_bundledestroy Subroutine

subroutine f_esmf_bundledestroy(bundlep, rc)

Uses

Arguments

Type IntentOptional Attributes Name
type(ESMF_FieldBundle), pointer :: bundlep
integer, intent(out), optional :: rc

Source Code

   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