Disable stack execution on plugins
[claws.git] / src / plugins / litehtml_viewer / litehtml / el_cdata.h
blob838cd92b1e59c0d822786e13a9e83cc275ca9330
1 #ifndef LH_EL_CDATA_H
2 #define LH_EL_CDATA_H
4 #include "html_tag.h"
6 namespace litehtml
8 class el_cdata : public element
10 string m_text;
11 public:
12 explicit el_cdata(const std::shared_ptr<document>& doc);
14 void get_text(string& text) override;
15 void set_data(const char* data) override;
19 #endif // LH_EL_CDATA_H