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