Cogs.Core
el_space.h
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 tchar_t* text, const std::shared_ptr<litehtml::document>& doc);
13 virtual ~el_space();
14
15 virtual bool is_white_space() const override;
16 virtual bool is_break() const override;
17 };
18}
19
20#endif // LH_EL_SPACE_H