workflow Derived Type

type :: workflow


Inherits

type~~workflow~~InheritsGraph type~workflow workflow type~rule rule type~workflow->type~rule rules

Components

Type Visibility Attributes Name Initial
character(len=:), public, allocatable :: name
type(rule), public, dimension(:), allocatable :: rules

Source Code

    type :: workflow
        character(len=:),allocatable :: name
        type(rule),dimension(:),allocatable :: rules
    end type workflow