repo.or.cz
/
claws.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
add support for Ayatana indicator to Notification plugin
[claws.git]
/
src
/
plugins
/
litehtml_viewer
/
litehtml
/
el_cdata.h
blob
838cd92b1e59c0d822786e13a9e83cc275ca9330
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
string m_text
;
11
public
:
12
explicit
el_cdata
(
const
std
::
shared_ptr
<
document
>&
doc
);
13
14
void
get_text
(
string
&
text
)
override
;
15
void
set_data
(
const char
*
data
)
override
;
16
};
17
}
18
19
#endif
// LH_EL_CDATA_H