blob: e0a03740574bbdcdc4e65dec042ca32cb4dae93f (
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_SCRIPT_H
#define LH_EL_SCRIPT_H
#include "html_tag.h"
namespace litehtml
{
class el_script : public element
{
string m_text;
public:
explicit el_script(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_SCRIPT_H
|