diff options
author | Miklos Vajna <vmiklos@collabora.co.uk> | 2018-05-17 21:06:10 +0200 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.co.uk> | 2018-05-18 09:19:27 +0200 |
commit | 85106da5107a16b57a8b320a3b624460539368e4 (patch) | |
tree | 888f75dcd7470d42d51b8e1c29ed95ea2531dddb /xmlsecurity/inc | |
parent | 69c8e9a0607e9a197dfff8139f2ca14c2538da8a (diff) |
Fix some IWYU warnings
Change-Id: I11d874caad9174fb1a70121f1772e117753ee519
Reviewed-on: https://gerrit.libreoffice.org/54503
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Miklos Vajna <vmiklos@collabora.co.uk>
Diffstat (limited to 'xmlsecurity/inc')
-rw-r--r-- | xmlsecurity/inc/pdfsignaturehelper.hxx | 33 |
1 files changed, 29 insertions, 4 deletions
diff --git a/xmlsecurity/inc/pdfsignaturehelper.hxx b/xmlsecurity/inc/pdfsignaturehelper.hxx index 2997a333d9a7..f23a371d2820 100644 --- a/xmlsecurity/inc/pdfsignaturehelper.hxx +++ b/xmlsecurity/inc/pdfsignaturehelper.hxx @@ -13,12 +13,37 @@ #include "xmlsecuritydllapi.h" -#include <com/sun/star/io/XInputStream.hpp> -#include <com/sun/star/security/DocumentSignatureInformation.hpp> -#include <com/sun/star/xml/crypto/XSecurityEnvironment.hpp> - #include <svl/sigstruct.hxx> +namespace com +{ +namespace sun +{ +namespace star +{ +namespace io +{ +class XInputStream; +} +namespace security +{ +class XCertificate; +} +namespace security +{ +struct DocumentSignatureInformation; +} +namespace xml +{ +namespace crypto +{ +class XSecurityEnvironment; +} +} +} +} +} + /// Handles signatures of a PDF file. class XMLSECURITY_DLLPUBLIC PDFSignatureHelper { |