summaryrefslogtreecommitdiff
path: root/libs/litehtml/include/litehtml/el_space.h
blob: 6d447f7103bb439ddca54e0e59867bbe6daeee65 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef LH_EL_SPACE_H
#define LH_EL_SPACE_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