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

#include "html_tag.h"

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

		void parse_attributes() override;
	};
}

#endif  // LH_EL_TD_H