mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-19 15:43:20 +00:00
14 lines
181 B
C
14 lines
181 B
C
![]() |
#pragma once
|
||
|
|
||
|
#include <AK/AKString.h>
|
||
|
#include <LibHTML/ParentNode.h>
|
||
|
|
||
|
class Document : public ParentNode {
|
||
|
public:
|
||
|
Document();
|
||
|
virtual ~Document() override;
|
||
|
|
||
|
private:
|
||
|
};
|
||
|
|