diff options
author | Noel Grandin <noelgrandin@gmail.com> | 2020-01-21 21:44:49 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-01-22 08:36:51 +0100 |
commit | 357bf8984ada1259720903ad7c7c44c9a6551cc8 (patch) | |
tree | d2a0db94d9e5d465c71de70c8608c2bec7532c85 /include | |
parent | f6c01b471a08ad1cb38377b8d82dba89206ea8cb (diff) |
Convert reportdesign to fastparser
Change-Id: I0703344aad4ca6c72e494160b019c13e24cc843a
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/87160
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include')
-rw-r--r-- | include/xmloff/XMLCharContext.hxx | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/include/xmloff/XMLCharContext.hxx b/include/xmloff/XMLCharContext.hxx index 64598e21a1d7..4883a39f7922 100644 --- a/include/xmloff/XMLCharContext.hxx +++ b/include/xmloff/XMLCharContext.hxx @@ -48,12 +48,24 @@ public: const OUString& rLName, const css::uno::Reference< css::xml::sax::XAttributeList > & xAttrList, sal_Int16 nControl ); + XMLCharContext( + SvXMLImport& rImport, + const css::uno::Reference< css::xml::sax::XFastAttributeList > & xAttrList, + sal_Unicode c, + bool bCount ); + XMLCharContext( + SvXMLImport& rImport, + sal_Int16 nControl ); virtual ~XMLCharContext() override; // EndElement is called before a context will be destructed, but // after an elements context has been parsed. It may be used for actions // that require virtual methods. The default is to do nothing. + virtual void SAL_CALL endFastElement(sal_Int32 nElement) override; + // EndElement is called before a context will be destructed, but + // after an elements context has been parsed. It may be used for actions + // that require virtual methods. The default is to do nothing. virtual void EndElement() override; virtual void InsertControlCharacter(sal_Int16 _nControl); |