wrap_json_value_create_object Subroutine

private subroutine wrap_json_value_create_object(me, name)

Arguments

Type IntentOptional AttributesName
type(json_value), , pointer:: me
character(kind=CDK,len=*), intent(in) :: name

Description

Wrap json_value_create_object so that json_create_object may be called with an actual argument corresponding to the dummy argument 'name' that is of either 'DEFAULT' or 'ISO_10646' character kind.

Calls

proc~~wrap_json_value_create_object~~CallsGraph proc~wrap_json_value_create_object wrap_json_value_create_object proc~json_value_create_object json_value_create_object proc~wrap_json_value_create_object->proc~json_value_create_object interface~to_unicode to_unicode proc~wrap_json_value_create_object->interface~to_unicode proc~json_value_create json_value_create proc~json_value_create_object->proc~json_value_create proc~to_object to_object proc~json_value_create_object->proc~to_object proc~to_uni to_uni interface~to_unicode->proc~to_uni proc~to_uni_vec to_uni_vec interface~to_unicode->proc~to_uni_vec proc~destroy_json_data destroy_json_data proc~to_object->proc~destroy_json_data
Help

Source Code

    subroutine wrap_json_value_create_object(me,name)

    implicit none

    type(json_value),pointer             :: me
    character(kind=CDK,len=*),intent(in) :: name

    call json_value_create_object(me,to_unicode(name))

    end subroutine wrap_json_value_create_object