mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 10:47:44 +00:00
13 lines
181 B
C++
13 lines
181 B
C++
#pragma once
|
|
|
|
#include <AK/AKString.h>
|
|
#include <LibHTML/ParentNode.h>
|
|
|
|
class Document : public ParentNode {
|
|
public:
|
|
Document();
|
|
virtual ~Document() override;
|
|
|
|
private:
|
|
};
|
|
|