mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-30 05:08:56 +00:00
12 lines
126 B
C++
12 lines
126 B
C++
#include <LibHTML/Document.h>
|
|
|
|
Document::Document()
|
|
: ParentNode(NodeType::DOCUMENT_NODE)
|
|
{
|
|
}
|
|
|
|
Document::~Document()
|
|
{
|
|
}
|
|
|