mirror of
https://github.com/SerenityOS/serenity
synced 2026-05-12 18:06:56 +02:00
11 lines
172 B
C++
11 lines
172 B
C++
#include <LibHTML/Layout/LayoutDocument.h>
|
|
|
|
LayoutDocument::LayoutDocument(const Document& document)
|
|
: LayoutNode(&document)
|
|
{
|
|
}
|
|
|
|
LayoutDocument::~LayoutDocument()
|
|
{
|
|
}
|