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