Call on_before_run(cmd) on all registered features.
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| class(feature_manager_t), | intent(inout) | :: | self | |||
| character(len=:), | intent(inout), | allocatable | :: | cmd |
subroutine on_before_run_all(self, cmd) class(feature_manager_t), intent(inout) :: self character(len=:), allocatable, intent(inout) :: cmd integer :: i if (.not. allocated(self%feat)) return do i = 1, size(self%feat) if (allocated(self%feat(i)%p)) call self%feat(i)%p%on_before_run(cmd) end do end subroutine on_before_run_all