Line data Source code
1 : #ifndef INCLUDED_COM_SUN_STAR_SECURITY_DOCUMENTSIGNATUREINFORMATION_HPP
2 : #define INCLUDED_COM_SUN_STAR_SECURITY_DOCUMENTSIGNATUREINFORMATION_HPP
3 :
4 : #include "sal/config.h"
5 :
6 : #include "com/sun/star/security/DocumentSignatureInformation.hdl"
7 :
8 : #include "com/sun/star/security/XCertificate.hpp"
9 : #include "com/sun/star/uno/Reference.hxx"
10 : #include "com/sun/star/uno/Type.hxx"
11 : #include "cppu/unotype.hxx"
12 : #include "sal/types.h"
13 : #include "typelib/typeclass.h"
14 : #include "typelib/typedescription.h"
15 :
16 : namespace com { namespace sun { namespace star { namespace security {
17 :
18 : inline DocumentSignatureInformation::DocumentSignatureInformation() SAL_THROW(())
19 : : Signer()
20 : , SignatureDate(0)
21 : , SignatureTime(0)
22 : , SignatureIsValid(false)
23 : , CertificateStatus(0)
24 : , PartialDocumentSignature(false)
25 : {
26 : }
27 :
28 : inline DocumentSignatureInformation::DocumentSignatureInformation(const ::com::sun::star::uno::Reference< css::security::XCertificate >& Signer_, const ::sal_Int32& SignatureDate_, const ::sal_Int32& SignatureTime_, const ::sal_Bool& SignatureIsValid_, const ::sal_Int32& CertificateStatus_, const ::sal_Bool& PartialDocumentSignature_) SAL_THROW(())
29 : : Signer(Signer_)
30 : , SignatureDate(SignatureDate_)
31 : , SignatureTime(SignatureTime_)
32 : , SignatureIsValid(SignatureIsValid_)
33 : , CertificateStatus(CertificateStatus_)
34 : , PartialDocumentSignature(PartialDocumentSignature_)
35 : {
36 : }
37 :
38 : } } } }
39 :
40 : namespace com { namespace sun { namespace star { namespace security {
41 :
42 78 : inline ::com::sun::star::uno::Type const & cppu_detail_getUnoType(SAL_UNUSED_PARAMETER css::security::DocumentSignatureInformation const *) {
43 : //TODO: On certain platforms with weak memory models, the following code can result in some threads observing that the_type points to garbage
44 : static ::typelib_TypeDescriptionReference * the_type = 0;
45 78 : if (the_type == 0) {
46 78 : ::typelib_static_type_init(&the_type, typelib_TypeClass_STRUCT, "com.sun.star.security.DocumentSignatureInformation");
47 : }
48 78 : return *reinterpret_cast< ::com::sun::star::uno::Type * >(&the_type);
49 : }
50 :
51 : } } } }
52 :
53 : inline ::com::sun::star::uno::Type const & SAL_CALL getCppuType(SAL_UNUSED_PARAMETER css::security::DocumentSignatureInformation const *) SAL_THROW(()) {
54 : return ::cppu::UnoType< css::security::DocumentSignatureInformation >::get();
55 : }
56 :
57 : #endif // INCLUDED_COM_SUN_STAR_SECURITY_DOCUMENTSIGNATUREINFORMATION_HPP
|