summaryrefslogtreecommitdiffstats
path: root/lotuswordpro/source/filter/lwpfilter.hxx
diff options
context:
space:
mode:
authorThomas Arnhold <thomas@arnhold.org>2014-05-13 00:57:03 +0200
committerThomas Arnhold <thomas@arnhold.org>2014-05-13 05:26:04 +0200
commite834206767b33d5fadc8100ada95c1f383d8363c (patch)
treedb5ae198474f34f6f432baca98ab2ef5c8483e19 /lotuswordpro/source/filter/lwpfilter.hxx
parentSAL_INT64_IS_STRUCT is never defined (diff)
downloadcore-e834206767b33d5fadc8100ada95c1f383d8363c.tar.gz
core-e834206767b33d5fadc8100ada95c1f383d8363c.zip
unusedcode.easy: remove LWPFilterReader::LWPFilterReader()
Change-Id: Iefbf36d2ce0f98c61a0d9f5d04b77a3505980e80
Diffstat (limited to 'lotuswordpro/source/filter/lwpfilter.hxx')
-rw-r--r--lotuswordpro/source/filter/lwpfilter.hxx37
1 files changed, 0 insertions, 37 deletions
diff --git a/lotuswordpro/source/filter/lwpfilter.hxx b/lotuswordpro/source/filter/lwpfilter.hxx
index 6f82a1d57455..54ca0cfcd700 100644
--- a/lotuswordpro/source/filter/lwpfilter.hxx
+++ b/lotuswordpro/source/filter/lwpfilter.hxx
@@ -86,43 +86,6 @@ using namespace ::com::sun::star::uno;
using namespace ::com::sun::star::text;
using namespace ::com::sun::star;
-/**
- * @brief
- * Implements the XFilter interface.
- * This is not the entry for the filter, but a proto of LwpFilterImportFilter.
- */
-class LWPFilterReader : public WeakImplHelper1< XFilter >
-{
-public:
- LWPFilterReader();
- virtual ~LWPFilterReader();
-
-public:
- /**
- * @descr loading the file. It's call be SfxObejctShell::ImportFrom.
- * @param aDescriptor the parameters include file URL or XInputStream object, from which the filter can
- * get which file to import.
- */
- virtual sal_Bool SAL_CALL filter( const Sequence< PropertyValue >& aDescriptor )
- throw( RuntimeException, std::exception ) SAL_OVERRIDE;
-
- /**
- * @descr stop loading the file.
- */
- virtual void SAL_CALL cancel() throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
-
- /**
- * @descr get the XDocumentHandler interface.
- */
- void setDocumentHandler( uno::Reference< XDocumentHandler >& xHandler )
- {
- m_DocumentHandler = xHandler;
- }
-
-private:
- uno::Reference< XDocumentHandler > m_DocumentHandler;
-};
-
//test code
int ReadWordproFile(SvStream &rStream, uno::Reference<XDocumentHandler>& XDoc);