diff options
author | Takeshi Abe <tabe@fixedpoint.jp> | 2012-07-07 10:07:55 +0900 |
---|---|---|
committer | Takeshi Abe <tabe@fixedpoint.jp> | 2012-07-07 10:09:22 +0900 |
commit | 79d386f00163968037673a5c4e616d0fc142086e (patch) | |
tree | 4eee153ee8e4478d985e8cf795626dd631ac39ae /package | |
parent | bbcc5572caee525c354457ffc5df77644807523e (diff) |
removed unnecessary forward declarations of class
except moving 'class SfxStringItem' to cui/source/inc/acccfg.hxx
Change-Id: I11d3803ebcfa02658d376bacf28b3d6030ee9d1b
Diffstat (limited to 'package')
-rw-r--r-- | package/inc/ZipPackage.hxx | 1 | ||||
-rw-r--r-- | package/inc/ZipPackageBuffer.hxx | 2 | ||||
-rw-r--r-- | package/inc/ZipPackageFolder.hxx | 2 | ||||
-rw-r--r-- | package/source/xstor/xfactory.hxx | 2 | ||||
-rw-r--r-- | package/source/xstor/xstorage.hxx | 5 |
5 files changed, 0 insertions, 12 deletions
diff --git a/package/inc/ZipPackage.hxx b/package/inc/ZipPackage.hxx index e24c2f173b52..b39ff2998403 100644 --- a/package/inc/ZipPackage.hxx +++ b/package/inc/ZipPackage.hxx @@ -40,7 +40,6 @@ class ZipOutputStream; class ZipPackageFolder; class ZipFile; -class ByteGrabber; namespace com { namespace sun { namespace star { namespace container { class XNameContainer; } namespace io { class XStream; class XOutputStream; class XInputStream; class XSeekable; class XActiveDataStreamer; } diff --git a/package/inc/ZipPackageBuffer.hxx b/package/inc/ZipPackageBuffer.hxx index 1ea003ca0230..71fceb41ffd9 100644 --- a/package/inc/ZipPackageBuffer.hxx +++ b/package/inc/ZipPackageBuffer.hxx @@ -24,8 +24,6 @@ #include <com/sun/star/io/XInputStream.hpp> #include <cppuhelper/implbase3.hxx> -class ZipPackage; - class ZipPackageBuffer : public ::cppu::WeakImplHelper3 < com::sun::star::io::XInputStream, diff --git a/package/inc/ZipPackageFolder.hxx b/package/inc/ZipPackageFolder.hxx index 9936d5470ed1..92ad93554f6c 100644 --- a/package/inc/ZipPackageFolder.hxx +++ b/package/inc/ZipPackageFolder.hxx @@ -38,8 +38,6 @@ namespace packages } } } } -class ZipFile; -class ZipPackage; class ZipOutputStream; struct ZipEntry; typedef void* rtlRandomPool; diff --git a/package/source/xstor/xfactory.hxx b/package/source/xstor/xfactory.hxx index bfda26bd5706..7d845b28d881 100644 --- a/package/source/xstor/xfactory.hxx +++ b/package/source/xstor/xfactory.hxx @@ -27,8 +27,6 @@ #include <cppuhelper/implbase2.hxx> -class OStorage; - class OStorageFactory : public ::cppu::WeakImplHelper2< ::com::sun::star::lang::XSingleServiceFactory, ::com::sun::star::lang::XServiceInfo > { diff --git a/package/source/xstor/xstorage.hxx b/package/source/xstor/xstorage.hxx index 4758ae07f3a8..e1839daf1b39 100644 --- a/package/source/xstor/xstorage.hxx +++ b/package/source/xstor/xstorage.hxx @@ -64,11 +64,6 @@ #define STOR_MESS_PREREVERT 3 #define STOR_MESS_REVERTED 4 -namespace cppu -{ - class OTypeCollection; -} - //================================================ // a common implementation for an entry |