diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2002-08-20 12:04:52 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2002-08-20 12:04:52 +0000 |
commit | c729070d1f4ae846e6a24897e2b05408f21cb928 (patch) | |
tree | f84e39e54bee10c8f929c871e02e646243661ce4 /package | |
parent | a54bf131648f24061ee92b7bedf04846abaf5baa (diff) |
#101685#,#i6886# merge OOO_STABLE_1_PORTS (1.11-1.11.10.1) -> HEAD
Diffstat (limited to 'package')
-rw-r--r-- | package/source/zippackage/ZipPackageStream.hxx | 20 |
1 files changed, 18 insertions, 2 deletions
diff --git a/package/source/zippackage/ZipPackageStream.hxx b/package/source/zippackage/ZipPackageStream.hxx index a1a37a861916..5875e93eabe5 100644 --- a/package/source/zippackage/ZipPackageStream.hxx +++ b/package/source/zippackage/ZipPackageStream.hxx @@ -2,9 +2,9 @@ * * $RCSfile: ZipPackageStream.hxx,v $ * - * $Revision: 1.11 $ + * $Revision: 1.12 $ * - * last change: $Author: mtg $ $Date: 2001-11-15 20:27:48 $ + * last change: $Author: hr $ $Date: 2002-08-20 13:04:52 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -80,11 +80,17 @@ class ZipPackage; struct ZipEntry; +#ifdef MACOSX +class ZipPackageStream : public ZipPackageEntry, + public ::cppu::OWeakObject, + public ::com::sun::star::io::XActiveDataSink +#else class ZipPackageStream : public cppu::ImplInheritanceHelper1 < ZipPackageEntry, ::com::sun::star::io::XActiveDataSink > +#endif { static com::sun::star::uno::Sequence < sal_Int8 > aImplementationId; protected: @@ -148,6 +154,16 @@ public: return aImplementationId; } +#ifdef MACOSX + // XInterface + virtual ::com::sun::star::uno::Any SAL_CALL queryInterface( const ::com::sun::star::uno::Type& rType ) + throw(::com::sun::star::uno::RuntimeException); + virtual void SAL_CALL acquire( ) + throw(); + virtual void SAL_CALL release( ) + throw(); +#endif + // XActiveDataSink virtual void SAL_CALL setInputStream( const ::com::sun::star::uno::Reference< ::com::sun::star::io::XInputStream >& aStream ) throw(::com::sun::star::uno::RuntimeException); |