add support for Ayatana indicator to Notification plugin
[claws.git] / src / plugins / litehtml_viewer / litehtml / el_style.h
blob62f1546259cb786f5fbd1bbcc7d14fa6d5192790
1 #ifndef LH_EL_STYLE_H
2 #define LH_EL_STYLE_H
4 #include "html_tag.h"
6 namespace litehtml
8 class el_style : public element
10 elements_list m_children;
11 public:
12 explicit el_style(const std::shared_ptr<document>& doc);
14 void parse_attributes() override;
15 bool appendChild(const ptr &el) override;
16 string_id tag() const override;
17 const char* get_tagName() const override;
21 #endif // LH_EL_STYLE_H