diff options
author | Michael Mi <mmi@openoffice.org> | 2004-08-12 01:30:19 +0000 |
---|---|---|
committer | Michael Mi <mmi@openoffice.org> | 2004-08-12 01:30:19 +0000 |
commit | e076405184f59773a63c44075097e113b17ae9c0 (patch) | |
tree | 532ea32dd9e1095f56f03738b10b9383f5a6b822 /xmlsecurity/inc | |
parent | 690e909ef771703ef848cda41df753d3f96491b0 (diff) |
change datetime format
Issue number:
Submitted by:
Reviewed by:
Diffstat (limited to 'xmlsecurity/inc')
-rw-r--r-- | xmlsecurity/inc/xmlsecurity/sigstruct.hxx | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/xmlsecurity/inc/xmlsecurity/sigstruct.hxx b/xmlsecurity/inc/xmlsecurity/sigstruct.hxx index 65da1818c0dc..908595e1a838 100644 --- a/xmlsecurity/inc/xmlsecurity/sigstruct.hxx +++ b/xmlsecurity/inc/xmlsecurity/sigstruct.hxx @@ -2,9 +2,9 @@ * * $RCSfile: sigstruct.hxx,v $ * - * $Revision: 1.2 $ + * $Revision: 1.3 $ * - * last change: $Author: mmi $ $Date: 2004-07-15 08:12:08 $ + * last change: $Author: mmi $ $Date: 2004-08-12 02:29:56 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -64,6 +64,10 @@ #include <rtl/ustring.hxx> +#ifndef _COM_SUN_STAR_UTIL_DATETIME_HPP_ +#include <com/sun/star/util/DateTime.hpp> +#endif + #ifndef INCLUDED_VECTOR #include <vector> #define INCLUDED_VECTOR @@ -109,8 +113,11 @@ struct SignatureInformation rtl::OUString ouX509SerialNumber; rtl::OUString ouX509Certificate; rtl::OUString ouSignatureValue; - rtl::OUString ouDate; - rtl::OUString ouTime; + + //rtl::OUString ouDate; + //rtl::OUString ouTime; + ::com::sun::star::util::DateTime stDateTime; + rtl::OUString ouSignatureId; rtl::OUString ouPropertyId; |