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

#include "html_tag.h"

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

		void parse_attributes() override;

	};
}

#endif  // LH_EL_PARA_H