Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
type(ESMF_CWrap) | :: | comp | ||||
type(ESMF_VM) | :: | vm | ||||
integer | :: | rc |
recursive subroutine f_esmf_compinsertvm(comp, vm, rc) use ESMF_UtilTypesMod ! ESMF utility types use ESMF_InitMacrosMod ! ESMF initializer macros use ESMF_BaseMod ! ESMF base class use ESMF_CompMod use ESMF_VMMod use ESMF_InitMacrosMod implicit none type(ESMF_CWrap) :: comp type(ESMF_VM) :: vm integer :: rc type(ESMF_VM) :: local_vm type(ESMF_Pointer) :: this ! Initialize return code; assume routine not implemented rc = ESMF_RC_NOT_IMPL call ESMF_VMGetThis(vm, this, rc=rc) ! Get address of C++ object call ESMF_VMSetThis(local_vm, this, rc=rc) ! Set address of C++ object call ESMF_VMSetInitCreated(local_vm) ! Set init code call ESMF_CompSet(compp=comp%compp, vm=local_vm, rc=rc) end subroutine f_esmf_compinsertvm