set_with_headers Subroutine

private subroutine set_with_headers(this, has_headers)

Type Bound

data_frame

Arguments

Type IntentOptional Attributes Name
class(data_frame), intent(inout) :: this
logical, intent(in) :: has_headers

Source Code

    subroutine set_with_headers(this, has_headers)
        class(data_frame), intent(inout) :: this
        logical, intent(in) :: has_headers
        this % with_headers = has_headers
    end subroutine set_with_headers