mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-26 11:20:03 +00:00
Things were getting a little crowded in the project root, so this patch moves the Lib*/ directories into Libraries/.
12 lines
227 B
C++
12 lines
227 B
C++
#include <LibHTML/DOM/Element.h>
|
|
#include <LibHTML/Layout/LayoutInline.h>
|
|
|
|
LayoutInline::LayoutInline(const Node& node, const StyledNode& styled_node)
|
|
: LayoutNode(&node, styled_node)
|
|
{
|
|
}
|
|
|
|
LayoutInline::~LayoutInline()
|
|
{
|
|
}
|