#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& doc); void parse_attributes() override; }; } #endif // LH_EL_TD_H