new_ExtDataCollection Function

public function new_ExtDataCollection(template) result(collection)

Arguments

Type IntentOptional Attributes Name
character(len=*), intent(in) :: template

Return Value type(ExtDataCollection)


Called by

proc~~new_extdatacollection~~CalledByGraph proc~new_extdatacollection new_ExtDataCollection interface~extdatacollection ExtDataCollection interface~extdatacollection->proc~new_extdatacollection

Source Code

  function new_ExtDataCollection(template) result(collection)
    type (ExtDataCollection) :: collection
    character(len=*), intent(in) :: template

    collection%template = template

  end function new_ExtDataCollection