fix bug 4376, 'Litehtml breaks locale'
[claws.git] / src / plugins / litehtml_viewer / litehtml / el_cdata.h
1 #ifndef LH_EL_CDATA_H
2 #define LH_EL_CDATA_H
3
4 #include "html_tag.h"
5
6 namespace litehtml
7 {
8         class el_cdata : public element
9         {
10                 tstring m_text;
11         public:
12                 el_cdata(const std::shared_ptr<litehtml::document>& doc);
13                 virtual ~el_cdata();
14
15                 virtual void    get_text(tstring& text) override;
16                 virtual void    set_data(const tchar_t* data) override;
17         };
18 }
19
20 #endif  // LH_EL_CDATA_H