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

#include "html_tag.h"

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

		void parse_attributes() override;
	};
}

#endif  // LH_EL_BASE_H