vCalendar: Honor VTIMEZONE component if present
[claws.git] / src / plugins / litehtml_viewer / litehtml / el_space.h
blob46a292ebcb23c3cf1647f718fd3076f665eaf9b5
1 #ifndef LH_EL_SPACE_H
2 #define LH_EL_SPACE_H
4 #include "html_tag.h"
5 #include "el_text.h"
7 namespace litehtml
9 class el_space : public el_text
11 public:
12 el_space(const char* text, const std::shared_ptr<document>& doc);
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;
21 #endif // LH_EL_SPACE_H