summaryrefslogtreecommitdiff
path: root/fileaccess
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2012-08-17 17:04:34 +0100
committerCaolán McNamara <caolanm@redhat.com>2012-08-17 17:05:08 +0100
commit288aebef57310e094d990434de3f35c8472b7b1a (patch)
tree505c41c5fdc76471573a2e0c405c4e7608e6678b /fileaccess
parent866daf4f21662fa5852f5eccb04929c6c4fd7e0a (diff)
update unused code
Change-Id: Ieecaae35fe712893f0a9d81f249919d0a2459f5a
Diffstat (limited to 'fileaccess')
-rw-r--r--fileaccess/source/FileAccess.cxx31
1 files changed, 0 insertions, 31 deletions
diff --git a/fileaccess/source/FileAccess.cxx b/fileaccess/source/FileAccess.cxx
index d6f2b14f8812..254fea2606fe 100644
--- a/fileaccess/source/FileAccess.cxx
+++ b/fileaccess/source/FileAccess.cxx
@@ -152,37 +152,6 @@ Reference< XInputStream > OActiveDataSink::getInputStream()
//===========================================================================
-// Implementation XActiveDataSource
-
-typedef cppu::WeakImplHelper1< XActiveDataSource > ActiveDataSourceHelper;
-
-class OActiveDataSource : public ActiveDataSourceHelper
-{
- Reference< XOutputStream > mxStream;
-
-public:
-
- // Methods
- virtual void SAL_CALL setOutputStream( const Reference< XOutputStream >& aStream )
- throw(RuntimeException);
- virtual Reference< XOutputStream > SAL_CALL getOutputStream()
- throw(RuntimeException);
-};
-
-void OActiveDataSource::setOutputStream( const Reference< XOutputStream >& aStream )
- throw(RuntimeException)
-{
- mxStream = aStream;
-}
-
-Reference< XOutputStream > OActiveDataSource::getOutputStream()
- throw(RuntimeException)
-{
- return mxStream;
-}
-
-
-//===========================================================================
// Implementation XActiveDataStreamer
typedef cppu::WeakImplHelper1< XActiveDataStreamer > ActiveDataStreamerHelper;