Format_file Derived Type

type, public :: Format_file


Inherited by

type~~format_file~~InheritedByGraph type~format_file Format_file type~logger Logger type~logger->type~format_file file_format

Components

Type Visibility Attributes Name Initial
integer, public :: id = 1
character(len=10), public :: format_name = "txt"
character(len=100), public :: format_description = "Text file format"

Source Code

    type :: Format_file
        integer :: id = 1
        character(LEN=10) :: format_name = "txt"
        character(LEN=100) :: format_description = "Text file format"
    end type Format_file