mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-12-08 06:09:58 +00:00
15 lines
275 B
C++
15 lines
275 B
C++
/*
|
|
* Copyright (c) 2023, the SerenityOS developers.
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <LibWeb/Export.h>
|
|
|
|
namespace Web::Painting {
|
|
|
|
WEB_API void paint_table_borders(DisplayListRecordingContext&, PaintableBox const& table_paintable);
|
|
|
|
}
|