From db1557d445945b59085ea38b239ae541a03ae893 Mon Sep 17 00:00:00 2001 From: Martin Gallwey Date: Mon, 24 Sep 2001 17:23:40 +0000 Subject: #92268# Boolean flag to indicate if this stream has had an encryption key set at it --- package/source/zippackage/ZipPackageStream.hxx | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'package') 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;} -- cgit