aboutsummaryrefslogtreecommitdiffstats
path: root/include/litehtml/el_table.h
blob: 38352503bffa9d34bf5c42a52677e622d48bffdf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#ifndef LH_EL_TABLE_H
#define LH_EL_TABLE_H

#include "html_tag.h"

namespace litehtml
{
	struct col_info
	{
		int		width;
		bool	is_auto;
	};


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

		bool appendChild(const litehtml::element::ptr& el) override;
		void parse_attributes() override;
	};
}

#endif  // LH_EL_TABLE_H