workflow Derived Type

type :: workflow


Inherits

type~~workflow~2~~InheritsGraph type~workflow~2 workflow type~rule~2 rule type~workflow~2->type~rule~2 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