diff options
author | Michael Stahl <mst@apache.org> | 2011-08-28 22:34:30 +0000 |
---|---|---|
committer | Michael Stahl <mst@apache.org> | 2011-08-28 22:34:30 +0000 |
commit | 332eac8bd99a1a1a838da2a8ec978bd4d71307c6 (patch) | |
tree | 802f265f95fe5ec87b6be3cc95f9daaaeaa0d841 /unotools | |
parent | 79fbe8110d9869c400775f6d81e413bacb6bdb9b (diff) |
unotools: OOutputStreamWrapper:
remove invocation of DECLARE_UNO3_AGG_DEFAULTS
(symbols are somehow not exported with GCC 4.6, and it seems to be
unnecessary)
Diffstat (limited to 'unotools')
-rw-r--r-- | unotools/inc/unotools/streamwrap.hxx | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/unotools/inc/unotools/streamwrap.hxx b/unotools/inc/unotools/streamwrap.hxx index d8544cc25f3e..0feb26b63ef7 100644 --- a/unotools/inc/unotools/streamwrap.hxx +++ b/unotools/inc/unotools/streamwrap.hxx @@ -36,7 +36,6 @@ #include <com/sun/star/io/XStream.hpp> #include <cppuhelper/implbase3.hxx> #include <cppuhelper/implbase1.hxx> -#include <comphelper/uno3.hxx> class SvStream; @@ -68,9 +67,6 @@ public: OInputStreamWrapper(SvStream* pStream, sal_Bool bOwner=sal_False); virtual ~OInputStreamWrapper(); -// UNO Anbindung - DECLARE_UNO3_AGG_DEFAULTS(OInputStreamWrapper, InputStreamWrapper_Base); - // stario::XInputStream virtual sal_Int32 SAL_CALL readBytes(staruno::Sequence< sal_Int8 >& aData, sal_Int32 nBytesToRead) throw(stario::NotConnectedException, stario::BufferSizeExceededException, staruno::RuntimeException); virtual sal_Int32 SAL_CALL readSomeBytes(staruno::Sequence< sal_Int8 >& aData, sal_Int32 nMaxBytesToRead) throw(stario::NotConnectedException, stario::BufferSizeExceededException, staruno::RuntimeException); @@ -121,9 +117,6 @@ protected: public: OOutputStreamWrapper(SvStream& _rStream) :rStream(_rStream) { } -// UNO Anbindung - DECLARE_UNO3_AGG_DEFAULTS(OOutputStreamWrapper, OutputStreamWrapper_Base); - // stario::XOutputStream virtual void SAL_CALL writeBytes(const staruno::Sequence< sal_Int8 >& aData) throw(stario::NotConnectedException, stario::BufferSizeExceededException, staruno::RuntimeException); virtual void SAL_CALL flush() throw(stario::NotConnectedException, stario::BufferSizeExceededException, staruno::RuntimeException); |