#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& 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