diff options
author | Martin Gallwey <mtg@openoffice.org> | 2001-09-24 17:23:40 +0000 |
---|---|---|
committer | Martin Gallwey <mtg@openoffice.org> | 2001-09-24 17:23:40 +0000 |
commit | db1557d445945b59085ea38b239ae541a03ae893 (patch) | |
tree | 9a9ff0265190c30048913f2143fe7558a1f6af72 /package | |
parent | 8222364c932216b551cfbb9466258c6effe38b30 (diff) |
#92268# Boolean flag to indicate if this stream has had an encryption key set at it
Diffstat (limited to 'package')
-rw-r--r-- | package/source/zippackage/ZipPackageStream.hxx | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/package/source/zippackage/ZipPackageStream.hxx b/package/source/zippackage/ZipPackageStream.hxx index dac31a392f1a..7ad9fd750e2e 100644 --- a/package/source/zippackage/ZipPackageStream.hxx +++ b/package/source/zippackage/ZipPackageStream.hxx @@ -2,9 +2,9 @@ * * $RCSfile: ZipPackageStream.hxx,v $ * - * $Revision: 1.8 $ + * $Revision: 1.9 $ * - * last change: $Author: mtg $ $Date: 2001-09-14 15:23:03 $ + * last change: $Author: mtg $ $Date: 2001-09-24 18:23:40 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -86,9 +86,10 @@ class ZipPackageStream : public ZipPackageEntry, protected: com::sun::star::uno::Reference < com::sun::star::io::XInputStream > xStream; ZipPackage &rZipPackage; - sal_Bool bToBeCompressed, bToBeEncrypted, bPackageMember; + sal_Bool bToBeCompressed, bToBeEncrypted, bPackageMember, bHaveOwnKey; vos::ORef < EncryptionData > xEncryptionData; public: + sal_Bool HasOwnKey () { return bHaveOwnKey;} sal_Bool IsToBeCompressed () { return bToBeCompressed;} sal_Bool IsToBeEncrypted () { return bToBeEncrypted;} sal_Bool IsPackageMember () { return bPackageMember;} |