mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-29 12:49:08 +00:00
12 lines
170 B
C++
12 lines
170 B
C++
#include <LibHTML/Element.h>
|
|
#include <LibHTML/LayoutBlock.h>
|
|
|
|
LayoutBlock::LayoutBlock(Element& element)
|
|
: LayoutNode(&element)
|
|
{
|
|
}
|
|
|
|
LayoutBlock::~LayoutBlock()
|
|
{
|
|
}
|