diff options
Diffstat (limited to 'unoxml/source/dom/documentbuilder.hxx')
-rw-r--r-- | unoxml/source/dom/documentbuilder.hxx | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/unoxml/source/dom/documentbuilder.hxx b/unoxml/source/dom/documentbuilder.hxx index cdda893010d5..9f6253bdff8a 100644 --- a/unoxml/source/dom/documentbuilder.hxx +++ b/unoxml/source/dom/documentbuilder.hxx @@ -123,6 +123,17 @@ namespace DOM the XML document to be parsed. */ virtual void SAL_CALL setErrorHandler(const css::uno::Reference< css::xml::sax::XErrorHandler >& eh) override; + + /* + Get the ErrorHandler to be used to report errors present in + the XML document to be parsed. + */ + + const css::uno::Reference< css::xml::sax::XErrorHandler >& getErrorHandler() + { + return m_xErrorHandler; + } + }; } |