new_HistoryCollection Function

public function new_HistoryCollection(fmd) result(collection)

Arguments

Type IntentOptional Attributes Name
type(FileMetadata), intent(in) :: fmd

Return Value type(HistoryCollection)


Called by

proc~~new_historycollection~~CalledByGraph proc~new_historycollection new_HistoryCollection interface~historycollection HistoryCollection interface~historycollection->proc~new_historycollection

Source Code

  function new_HistoryCollection(fmd) result(collection)
    type (HistoryCollection) :: collection
    type (FilemetaData), intent(in) :: fmd

    collection%fmd = fmd
    collection%formatters = StringNetCDF4_FileFormatterMap()

  end function new_HistoryCollection