Cogs.Core
el_style.h
1#ifndef LH_EL_STYLE_H
2#define LH_EL_STYLE_H
3
4#include "html_tag.h"
5
6namespace litehtml
7{
8 class el_style : public element
9 {
10 elements_vector m_children;
11 public:
12 el_style(const std::shared_ptr<litehtml::document>& doc);
13 virtual ~el_style();
14
15 virtual void parse_attributes() override;
16 virtual bool appendChild(const ptr &el) override;
17 virtual const tchar_t* get_tagName() const override;
18 };
19}
20
21#endif // LH_EL_STYLE_H