| Type | Visibility | Attributes | Name | Initial | |||
|---|---|---|---|---|---|---|---|
| character(len=:), | public, | allocatable | :: | last | |||
| integer, | public | :: | n | = | 0 | ||
| type(time_record), | public, | allocatable | :: | record(:) |
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| class(timer_type), | intent(in) | :: | self | |||
| character(len=*), | intent(in) | :: | label |
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| class(timer_type), | intent(inout) | :: | self |
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| class(timer_type), | intent(inout) | :: | self | |||
| character(len=*), | intent(in) | :: | label |
type :: timer_type integer :: n = 0 character(len=:), allocatable :: last type(time_record), allocatable :: record(:) contains procedure :: push procedure :: pop procedure :: get end type timer_type