mirror of
https://github.com/RGBCube/serenity
synced 2025-05-20 05:15:06 +00:00
11 lines
126 B
C++
11 lines
126 B
C++
#include <LibHTML/Document.h>
|
|
|
|
Document::Document()
|
|
: ParentNode(NodeType::DOCUMENT_NODE)
|
|
{
|
|
}
|
|
|
|
Document::~Document()
|
|
{
|
|
}
|
|
|