aboutsummaryrefslogtreecommitdiffstats
path: root/include/litehtml/el_break.h
blob: 2a4d8fe45be97d2b350d697b30497b9d9f1ce2fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef LH_EL_BREAK_H
#define LH_EL_BREAK_H

#include "html_tag.h"

namespace litehtml
{
	class el_break : public html_tag
	{
	public:
		explicit el_break(const std::shared_ptr<litehtml::document>& doc);

		bool is_break() const override;
    };
}

#endif  // LH_EL_BREAK_H