Fix build error
[claws.git] / src / plugins / litehtml_viewer / litehtml / el_script.h
1 #ifndef LH_EL_SCRIPT_H
2 #define LH_EL_SCRIPT_H
3
4 #include "html_tag.h"
5
6 namespace litehtml
7 {
8         class el_script : public element
9         {
10                 tstring m_text;
11         public:
12                 el_script(const std::shared_ptr<litehtml::document>& doc);
13                 virtual ~el_script();
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_SCRIPT_H