Call on_watch_list_built(files, roots) on all registered features.
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| class(feature_manager_t), | intent(inout) | :: | self | |||
| type(string_t), | intent(inout), | allocatable | :: | files(:) | ||
| type(root_info_t), | intent(inout), | allocatable | :: | roots(:) |
subroutine on_watch_list_built_all(self, files, roots) class(feature_manager_t), intent(inout) :: self type(string_t), allocatable, intent(inout) :: files(:) type(root_info_t), allocatable, intent(inout) :: roots(:) 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_watch_list_built(files, roots) end do end subroutine on_watch_list_built_all