Call on_start() on all registered features.
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| class(feature_manager_t), | intent(inout) | :: | self |
subroutine on_start_all(self) class(feature_manager_t), intent(inout) :: self 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_start() end do end subroutine on_start_all