mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-20 16:13:21 +00:00
12 lines
126 B
C++
12 lines
126 B
C++
![]() |
#include <LibHTML/Document.h>
|
||
|
|
||
|
Document::Document()
|
||
|
: ParentNode(NodeType::DOCUMENT_NODE)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
Document::~Document()
|
||
|
{
|
||
|
}
|
||
|
|