blob: 53c170f13a1f24990d9a0e498bf2623d3e5ed5e6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#ifndef LH_EL_SPACE_H
#define LH_EL_SPACE_H
#include "html_tag.h"
#include "el_text.h"
namespace litehtml
{
class el_space : public el_text
{
public:
el_space(const char* text, const std::shared_ptr<document>& doc);
bool is_white_space() const override;
bool is_break() const override;
bool is_space() const override;
string dump_get_name() override;
};
}
#endif // LH_EL_SPACE_H
|