#include <xmlutils.h>
Inheritance diagram for CXMLUtils:
Public Member Functions | |
CXMLUtils () | |
virtual | ~CXMLUtils () |
Static Public Member Functions | |
static BOOL | Initialise () |
Set up application wide XML support. | |
static BOOL | DeInitialise () |
Set up application wide XML support. | |
static wxString | ConvertToWXString (const xmlChar *) |
Set up application wide XML support. | |
static void | ConvertToXMLString (wxString str, xmlChar **pxmlstr) |
Set up application wide XML support. |
Definition at line 106 of file xmlutils.h.
|
Definition at line 109 of file xmlutils.h.
|
|
Definition at line 110 of file xmlutils.h.
|
|
Set up application wide XML support.
Definition at line 176 of file xmlutils.cpp. 00177 { 00178 // Use wx to convert from UTF8 to native 00179 wxString strTemp((const char*)xmlString, wxConvUTF8); 00180 00181 return strTemp; 00182 }
|
|
Set up application wide XML support.
Definition at line 198 of file xmlutils.cpp. 00199 { 00200 // wxCharBuffer buf = str.mb_str(wxConvUTF8); 00201 // wxStrdup from buf to pxmlstr? 00202 }
|
|
Set up application wide XML support.
Definition at line 148 of file xmlutils.cpp. 00149 { 00150 xmlCleanupParser(); 00151 00152 #if _DEBUG 00153 /* 00154 * this is to debug memory for regression tests 00155 */ 00156 xmlMemoryDump(); 00157 #endif 00158 00159 return TRUE; 00160 }
|
|
Set up application wide XML support.
Definition at line 126 of file xmlutils.cpp. 00127 { 00128 xmlInitParser(); 00129 LIBXML_TEST_VERSION 00130 00131 return TRUE; 00132 }
|