Index: ext/libicpf/src/cfg_xml.h =================================================================== diff -u -N -rd5bb2e19e22f57bd018e9db355108b54dfbc364c -r9bdff2e0b309af11014634d8c38367e4f6b656e3 --- ext/libicpf/src/cfg_xml.h (.../cfg_xml.h) (revision d5bb2e19e22f57bd018e9db355108b54dfbc364c) +++ ext/libicpf/src/cfg_xml.h (.../cfg_xml.h) (revision 9bdff2e0b309af11014634d8c38367e4f6b656e3) @@ -11,7 +11,7 @@ * It handles the xml data streams contained in the files, providing * a way to set and retrieve data contained in the xml document. */ -class xml_cfg : public config_base +class LIBICPF_API xml_cfg : public config_base { public: /** \name Construction/destruction/operators */ @@ -52,6 +52,9 @@ /// Clear helper - clears the appropriate attribures void clear(ptr_t pNodePtr, const tchar_t* pszName); + static void element_start(void *userData, const tchar_t *name, const tchar_t **attrs); + static void element_end(void *userData, const tchar_t* /*name*/); + protected: ptr_t m_hStorage; ///< Handle to the internal xml storage };