mirror of
https://github.com/RGBCube/serenity
synced 2025-05-17 06:25:11 +00:00

Things were getting a little crowded in the project root, so this patch moves the Lib*/ directories into Libraries/.
15 lines
258 B
C++
15 lines
258 B
C++
#pragma once
|
|
|
|
#include <AK/AKString.h>
|
|
#include <LibHTML/DOM/Node.h>
|
|
|
|
class Text final : public Node {
|
|
public:
|
|
explicit Text(const String&);
|
|
virtual ~Text() override;
|
|
|
|
const String& data() const { return m_data; }
|
|
|
|
private:
|
|
String m_data;
|
|
};
|