diff options
author | Martin Gallwey <mtg@openoffice.org> | 2001-11-15 19:39:25 +0000 |
---|---|---|
committer | Martin Gallwey <mtg@openoffice.org> | 2001-11-15 19:39:25 +0000 |
commit | ef6a289acbd9c014a4d85c976fe2295398efb22f (patch) | |
tree | ab42d8376419f1f096b34c428af9aaa3d6c5c55b /package/source | |
parent | f365bd639275954fbf9cec1b30ad3c8bc6927d8d (diff) |
#94679# support XTypeProvider and XServiceInfo
Diffstat (limited to 'package/source')
-rw-r--r-- | package/source/zippackage/ZipPackageEntry.hxx | 24 |
1 files changed, 17 insertions, 7 deletions
diff --git a/package/source/zippackage/ZipPackageEntry.hxx b/package/source/zippackage/ZipPackageEntry.hxx index c251f472e98b..bd4df2fc1053 100644 --- a/package/source/zippackage/ZipPackageEntry.hxx +++ b/package/source/zippackage/ZipPackageEntry.hxx @@ -2,9 +2,9 @@ * * $RCSfile: ZipPackageEntry.hxx,v $ * - * $Revision: 1.7 $ + * $Revision: 1.8 $ * - * last change: $Author: mtg $ $Date: 2001-10-26 21:55:47 $ + * last change: $Author: mtg $ $Date: 2001-11-15 20:39:25 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -76,16 +76,26 @@ #ifndef _COM_SUN_STAR_CONTAINER_XNAMECONTAINER_HPP_ #include <com/sun/star/container/XNameContainer.hpp> #endif +#ifndef _COM_SUN_STAR_LANG_XPSERVICEINFO_HPP_ +#include <com/sun/star/lang/XServiceInfo.hpp> +#endif #ifndef _ZIP_ENTRY_HXX_ #include <ZipEntry.hxx> #endif +#ifndef _CPPUHELPER_IMPLBASE5_HXX_ +#include <cppuhelper/implbase5.hxx> +#endif class ZipPackageFolder; -class ZipPackageEntry : public com::sun::star::container::XNamed, - public com::sun::star::container::XChild, - public com::sun::star::lang::XUnoTunnel, - public com::sun::star::beans::XPropertySet +class ZipPackageEntry : public cppu::WeakImplHelper5 +< + com::sun::star::container::XNamed, + com::sun::star::container::XChild, + com::sun::star::lang::XUnoTunnel, + com::sun::star::beans::XPropertySet, + com::sun::star::lang::XServiceInfo +> { protected: bool mbIsFolder:1; @@ -94,7 +104,7 @@ protected: ZipPackageFolder * pParent; public: ZipEntry aEntry; - ZipPackageEntry ( bool bNewFolder ); + ZipPackageEntry ( bool bNewFolder = sal_False ); virtual ~ZipPackageEntry( void ); ::rtl::OUString & GetMediaType () { return sMediaType; } |