mirror of
https://github.com/RGBCube/serenity
synced 2025-05-22 19:35:06 +00:00

Things were getting a little crowded in the project root, so this patch moves the Lib*/ directories into Libraries/.
11 lines
227 B
C++
11 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()
|
|
{
|
|
}
|