summaryrefslogtreecommitdiff
path: root/fileaccess
diff options
context:
space:
mode:
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;