|
a/src/internfile/myhtmlparse.h |
|
b/src/internfile/myhtmlparse.h |
|
... |
|
... |
53 |
// string charset;
|
53 |
// string charset;
|
54 |
|
54 |
|
55 |
bool indexing_allowed;
|
55 |
bool indexing_allowed;
|
56 |
|
56 |
|
57 |
void process_text(const string &text);
|
57 |
void process_text(const string &text);
|
58 |
void opening_tag(const string &tag, const map<string,string> &p);
|
58 |
bool opening_tag(const string &tag);
|
59 |
void closing_tag(const string &tag);
|
59 |
bool closing_tag(const string &tag);
|
60 |
void do_eof();
|
60 |
void do_eof();
|
61 |
void decode_entities(string &s);
|
61 |
void decode_entities(string &s);
|
62 |
void reset_charsets() {fromcharset = tocharset = "";}
|
62 |
void reset_charsets() {fromcharset = tocharset = "";}
|
63 |
void set_charsets(const string& f, const string& t)
|
63 |
void set_charsets(const string& f, const string& t)
|
64 |
{
|
64 |
{
|