file_scope_flag Derived Type

type, public :: file_scope_flag

Type storing file name - file scope compiler flags pairs


Contents

Source Code


Components

Type Visibility Attributes Name Initial
character(len=:), public, allocatable :: file_name

Name of the file

character(len=:), public, allocatable :: flags

File scope flags


Source Code

    type :: file_scope_flag

      !> Name of the file
      character(len=:), allocatable :: file_name

      !> File scope flags
      character(len=:), allocatable :: flags

    end type file_scope_flag