]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/html/htmlpars.h
Updated Italian translations
[wxWidgets.git] / include / wx / html / htmlpars.h
index e28657879fcfc788411d58beb2d2a885e8ec92b4..7d1205ae610f8d4728845955a9ddbb4ca4fdd634 100644 (file)
@@ -20,6 +20,8 @@
 
 #include "wx/html/htmltag.h"
 #include "wx/filesys.h"
 
 #include "wx/html/htmltag.h"
 #include "wx/filesys.h"
+#include "wx/hash.h"
+#include "wx/fontenc.h"
 
 class WXDLLEXPORT wxMBConv;
 class WXDLLEXPORT wxHtmlParser;
 
 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);
     // 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);
     wxChar GetEntityChar(const wxString& entity);
+
+    // Returns character that represents given Unicode code
     wxChar GetCharForCode(unsigned code);
 
     wxChar GetCharForCode(unsigned code);
 
+protected:
 #if wxUSE_WCHAR_T && !wxUSE_UNICODE
     wxMBConv *m_conv;
     wxFontEncoding m_encoding;
 #if wxUSE_WCHAR_T && !wxUSE_UNICODE
     wxMBConv *m_conv;
     wxFontEncoding m_encoding;