a type to define enums for the different methods
Type | Visibility | Attributes | Name | Initial | |||
---|---|---|---|---|---|---|---|
integer, | private | :: | id | = | 0 |
unique ID code for the method |
|
character(len=name_len), | private | :: | name | = | '' |
name of the method |
type,public :: root_method !! a type to define enums for the different methods private integer :: id = 0 !! unique ID code for the method character(len=name_len) :: name = '' !! name of the method end type root_method