Photon 1.0.0
Loading...
Searching...
No Matches
el_space.h
Go to the documentation of this file.
1#ifndef LH_EL_SPACE_H
2#define LH_EL_SPACE_H
3
4#include "html_tag.h"
5#include "el_text.h"
6
7namespace litehtml
8{
9 class el_space : public el_text
10 {
11 public:
12 el_space(const char* text, const std::shared_ptr<document>& doc);
13
14 bool is_white_space() const override;
15 bool is_break() const override;
16 bool is_space() const override;
17 string dump_get_name() override;
18 };
19}
20
21#endif // LH_EL_SPACE_H
Definition el_space.h:10
bool is_white_space() const override
Definition el_space.cpp:9
bool is_space() const override
Definition el_space.cpp:36
bool is_break() const override
Definition el_space.cpp:21
string dump_get_name() override
Definition el_space.cpp:41
Definition el_text.h:9
Definition background.h:12