| 1 | #ifndef LH_EL_STYLE_H |
|---|---|
| 2 | #define LH_EL_STYLE_H |
| 3 | |
| 4 | #include "html_tag.h" |
| 5 | |
| 6 | namespace litehtml |
| 7 | { |
| 8 | class el_style : public element |
| 9 | { |
| 10 | elements_list m_children; |
| 11 | public: |
| 12 | explicit el_style(const std::shared_ptr<document>& doc); |
| 13 | |
| 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; |
| 18 | }; |
| 19 | } |
| 20 | |
| 21 | #endif // LH_EL_STYLE_H |
| 22 |
