
This was a workaround to be able to build on case-insensitive file systems where it might get confused about <string.h> vs <String.h>. Let's just not support building that way, so String.h can have an objectively nicer name. :^)
15 lines
256 B
C++
15 lines
256 B
C++
#pragma once
|
|
|
|
#include <AK/String.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;
|
|
};
|