blob: 62f1546259cb786f5fbd1bbcc7d14fa6d5192790 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#ifndef LH_EL_STYLE_H
#define LH_EL_STYLE_H
#include "html_tag.h"
namespace litehtml
{
class el_style : public element
{
elements_list m_children;
public:
explicit el_style(const std::shared_ptr<document>& doc);
void parse_attributes() override;
bool appendChild(const ptr &el) override;
string_id tag() const override;
const char* get_tagName() const override;
};
}
#endif // LH_EL_STYLE_H
|