TableBordersPainting.h 267 B

123456789101112131415
  1. /*
  2. * Copyright (c) 2023, the SerenityOS developers.
  3. *
  4. * SPDX-License-Identifier: BSD-2-Clause
  5. */
  6. #pragma once
  7. #include <LibWeb/Painting/PaintContext.h>
  8. namespace Web::Painting {
  9. void paint_table_borders(PaintContext&, PaintableBox const& table_paintable);
  10. }