diff options
author | Noel Grandin <noelgrandin@gmail.com> | 2021-11-07 16:12:31 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2021-11-07 19:20:17 +0100 |
commit | a0e0575dcf4fede5c6e20636c63042d8c62ecf77 (patch) | |
tree | af00fa7be111a91cc2ff61d8f6d9fb0d945a3231 /xmlsecurity | |
parent | efd2510e225232ac35707a3ed55b83be9fa046af (diff) |
forward decls go after #include
Change-Id: I54c33508639044092356eed5144720261b4f65db
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/124816
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'xmlsecurity')
-rw-r--r-- | xmlsecurity/inc/framework/saxeventkeeperimpl.hxx | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/xmlsecurity/inc/framework/saxeventkeeperimpl.hxx b/xmlsecurity/inc/framework/saxeventkeeperimpl.hxx index 203ac16a33da..161b9a93619e 100644 --- a/xmlsecurity/inc/framework/saxeventkeeperimpl.hxx +++ b/xmlsecurity/inc/framework/saxeventkeeperimpl.hxx @@ -27,18 +27,17 @@ #include <com/sun/star/lang/XServiceInfo.hpp> #include <xmlsecuritydllapi.h> #include <cppuhelper/implbase.hxx> +#include <vector> +#include <memory> class BufferNode; class ElementMark; class ElementCollector; - -#include <vector> -#include <memory> - namespace com::sun::star::xml::crypto::sax { class XSAXEventKeeperStatusChangeListener; } namespace com::sun::star::xml::csax { class XCompressedDocumentHandler; } namespace com::sun::star::xml::wrapper { class XXMLDocumentWrapper; } + class SAXEventKeeperImpl final : public cppu::WeakImplHelper < css::xml::crypto::sax::XSecuritySAXEventKeeper, |