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

#include "html_tag.h"

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

		void parse_attributes() override;
	};
}

#endif  // LH_EL_TR_H