get_json_core_in_file Subroutine

private subroutine get_json_core_in_file(me, core)

Get a copy of the json_core in this json_file.

Type Bound

json_file

Arguments

Type IntentOptional Attributes Name
class(json_file), intent(in) :: me
type(json_core), intent(out) :: core

Source Code

    subroutine get_json_core_in_file(me,core)

    implicit none

    class(json_file),intent(in) :: me
    type(json_core),intent(out) :: core

    core = me%core

    end subroutine get_json_core_in_file