mirror of
https://github.com/RGBCube/serenity
synced 2025-05-19 14:55:08 +00:00
18 lines
300 B
C++
18 lines
300 B
C++
#pragma once
|
|
|
|
#include <AK/AKString.h>
|
|
#include <LibHTML/DOM/ParentNode.h>
|
|
|
|
class LayoutNode;
|
|
|
|
class Document : public ParentNode {
|
|
public:
|
|
Document();
|
|
virtual ~Document() override;
|
|
|
|
virtual RetainPtr<LayoutNode> create_layout_node() override;
|
|
|
|
void build_layout_tree();
|
|
|
|
private:
|
|
};
|