diff options
author | Oliver Bolte <obo@openoffice.org> | 2004-08-12 10:54:38 +0000 |
---|---|---|
committer | Oliver Bolte <obo@openoffice.org> | 2004-08-12 10:54:38 +0000 |
commit | d1176a025f4f50cf20fa377866977a1c87651f73 (patch) | |
tree | 0287a6cb4f9e8cec81529382aaf70da38870a695 /package/inc/ZipPackageFolder.hxx | |
parent | a9f4b852d377773859f081c0c3076546b45e8853 (diff) |
INTEGRATION: CWS unotlc (1.31.52); FILE MERGED
2004/08/04 12:06:34 mav 1.31.52.1: #i32418# vnd.sun.star.zip scheme
Diffstat (limited to 'package/inc/ZipPackageFolder.hxx')
-rw-r--r-- | package/inc/ZipPackageFolder.hxx | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/package/inc/ZipPackageFolder.hxx b/package/inc/ZipPackageFolder.hxx index a62caf74ad13..83287b4f2963 100644 --- a/package/inc/ZipPackageFolder.hxx +++ b/package/inc/ZipPackageFolder.hxx @@ -2,9 +2,9 @@ * * $RCSfile: ZipPackageFolder.hxx,v $ * - * $Revision: 1.31 $ + * $Revision: 1.32 $ * - * last change: $Author: hr $ $Date: 2004-02-03 17:48:23 $ + * last change: $Author: obo $ $Date: 2004-08-12 11:54:38 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -101,10 +101,12 @@ class ZipPackageFolder : public cppu::ImplInheritanceHelper2 protected: ContentHash maContents; const ::com::sun::star::uno::Reference < com::sun::star::lang::XMultiServiceFactory > m_xFactory; + sal_Bool m_bPackageFormat; public: - ZipPackageFolder( const ::com::sun::star::uno::Reference < com::sun::star::lang::XMultiServiceFactory >& xFactory ); + ZipPackageFolder( const ::com::sun::star::uno::Reference < com::sun::star::lang::XMultiServiceFactory >& xFactory, + sal_Bool bPackageFormat ); virtual ~ZipPackageFolder(); void doInsertByName ( ZipPackageEntry *pEntry, sal_Bool bSetParent ) @@ -116,6 +118,9 @@ public: { return aImplementationId; } + + void setPackageFormat_Impl( sal_Bool bPackageFormat ) { m_bPackageFormat = bPackageFormat; } + // Recursive functions void saveContents(rtl::OUString &rPath, std::vector < com::sun::star::uno::Sequence < com::sun::star::beans::PropertyValue > > &rManList, ZipOutputStream & rZipOut, com::sun::star::uno::Sequence < sal_Int8 > &rEncryptionKey, rtlRandomPool & rRandomPool) throw(::com::sun::star::uno::RuntimeException); |