Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
type(ESMF_VMPlan), | intent(in), | optional | :: | vmplan |
function ESMF_VMPlanGetInit(vmplan) ! ! !RETURN VALUE: ESMF_INIT_TYPE :: ESMF_VMPlanGetInit ! ! !ARGUMENTS: type(ESMF_VMPlan), intent(in), optional :: vmplan ! ! !DESCRIPTION: ! Access deep object init code. ! ! The arguments are: ! \begin{description} ! \item [vmplan] ! VMPlan object. ! \end{description} ! !EOPI !------------------------------------------------------------------------------ if (present(vmplan)) then ESMF_VMPlanGetInit = ESMF_INIT_GET(vmplan) else ESMF_VMPlanGetInit = ESMF_INIT_CREATED endif end function ESMF_VMPlanGetInit