Disable stack execution on plugins
[claws.git] / src / plugins / litehtml_viewer / litehtml / el_table.h
blob38352503bffa9d34bf5c42a52677e622d48bffdf
1 #ifndef LH_EL_TABLE_H
2 #define LH_EL_TABLE_H
4 #include "html_tag.h"
6 namespace litehtml
8 struct col_info
10 int width;
11 bool is_auto;
15 class el_table : public html_tag
17 public:
18 explicit el_table(const std::shared_ptr<litehtml::document>& doc);
20 bool appendChild(const litehtml::element::ptr& el) override;
21 void parse_attributes() override;
25 #endif // LH_EL_TABLE_H