Switch to unified view

a/src/internfile/htmlparse.h b/src/internfile/htmlparse.h
...
...
22
 */
22
 */
23
23
24
#include <string>
24
#include <string>
25
#include <map>
25
#include <map>
26
26
27
#ifndef NO_NAMESPACES
27
using std::string;
28
using std::string;
28
using std::map;
29
using std::map;
30
#endif /* NO_NAMESPACES */
29
31
30
class HtmlParser {
32
class HtmlParser {
31
    protected:
33
    protected:
32
    void decode_entities(string &s);
34
    void decode_entities(string &s);
33
    static map<string, string> named_ents;
35
    static map<string, string> named_ents;