X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/6c62a62bf732e57dfb39f303f61d92bcc6b404f0..a7910d97a37c967ee47813f9e3af33b1525d1269:/include/wx/html/htmlpars.h diff --git a/include/wx/html/htmlpars.h b/include/wx/html/htmlpars.h index e28657879f..7d1205ae61 100644 --- a/include/wx/html/htmlpars.h +++ b/include/wx/html/htmlpars.h @@ -20,6 +20,8 @@ #include "wx/html/htmltag.h" #include "wx/filesys.h" +#include "wx/hash.h" +#include "wx/fontenc.h" class WXDLLEXPORT wxMBConv; class WXDLLEXPORT wxHtmlParser; @@ -223,11 +225,14 @@ public: // Parses entities in input and replaces them with respective characters // (with respect to output encoding) wxString Parse(const wxString& input); - -protected: + + // Returns character for given entity or 0 if the enity is unknown wxChar GetEntityChar(const wxString& entity); + + // Returns character that represents given Unicode code wxChar GetCharForCode(unsigned code); +protected: #if wxUSE_WCHAR_T && !wxUSE_UNICODE wxMBConv *m_conv; wxFontEncoding m_encoding;