Photon 1.0.0
Loading...
Searching...
No Matches
el_script.h
Go to the documentation of this file.
1#ifndef LH_EL_SCRIPT_H
2#define LH_EL_SCRIPT_H
3
4#include "html_tag.h"
5
6namespace litehtml
7{
8 class el_script : public element
9 {
10 string m_text;
11 public:
12 explicit el_script(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_SCRIPT_H
Definition el_script.h:9
void parse_attributes() override
Definition el_script.cpp:11
string_id tag() const override
Definition el_script.cpp:22
bool appendChild(const ptr &el) override
Definition el_script.cpp:16
string m_text
Definition el_script.h:10
const char * get_tagName() const override
Definition el_script.cpp:27
Definition element.h:19
std::shared_ptr< element > ptr
Definition element.h:25
Definition background.h:12