Switch to unified view
a/src/internfile/htmlparse.h | b/src/internfile/htmlparse.h | ||
---|---|---|---|
... |
... |
||
30 | using std::string; |
30 | using std::string; |
31 | using std::map; |
31 | using std::map; |
32 | 32 | ||
33 | class HtmlParser { |
33 | class HtmlParser { |
34 | protected: |
34 | protected: |
35 | void decode_entities(string &s);
|
35 | virtual void decode_entities(string &s);
|
36 | bool in_script; |
36 | bool in_script; |
37 | string charset; |
37 | string charset; |
38 | static map<string, unsigned int> named_ents; |
38 | static map<string, unsigned int> named_ents; |
39 | public: |
39 | public: |
40 | virtual void process_text(const string &/*text*/) { } |
40 | virtual void process_text(const string &/*text*/) { } |