f_esmf_configcreate Subroutine

subroutine f_esmf_configcreate(config, rc)

Arguments

Type IntentOptional Attributes Name
type(ESMF_Config) :: config
integer, intent(out) :: rc

Source Code

   subroutine f_esmf_configcreate(config, rc)
     use ESMF_UtilTypesMod    ! ESMF base class
     use ESMF_BaseMod    ! ESMF base class
     use ESMF_ConfigMod

     implicit none

     type(ESMF_Config) :: config
     integer, intent(out) :: rc              

     ! Initialize return code; assume routine not implemented
       rc = ESMF_RC_NOT_IMPL

     config = ESMF_ConfigCreate(rc=rc)

   end subroutine f_esmf_configcreate