Sets file overwritting
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| class(solid_set), | intent(inout) | :: | this |
A collection of solids |
||
| logical, | intent(in) | :: | overwrite |
Toggle |
pure subroutine solid_set_SetOverwrite(this,overwrite) !> Sets file overwritting class(solid_set), intent(inout) :: this !! A collection of solids logical, intent(in) :: overwrite !! Toggle ! Work variables integer :: n this%overwrite=overwrite do n=1,this%count this%p(n)%overwrite=this%overwrite end do return end subroutine solid_set_SetOverwrite