mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-25 10:48:41 +00:00
Things were getting a little crowded in the project root, so this patch moves the Lib*/ directories into Libraries/.
13 lines
175 B
C++
13 lines
175 B
C++
#include <LibHTML/DOM/Text.h>
|
|
#include <LibHTML/Layout/LayoutText.h>
|
|
|
|
Text::Text(const String& data)
|
|
: Node(NodeType::TEXT_NODE)
|
|
, m_data(data)
|
|
{
|
|
}
|
|
|
|
Text::~Text()
|
|
{
|
|
}
|