summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.co.uk>2013-12-13 22:10:26 +0100
committerMiklos Vajna <vmiklos@collabora.co.uk>2013-12-13 22:15:19 +0100
commit148e7763f3b3b5eb881026228f8c40b1e179d79d (patch)
treecd257f2a09f2a6269f86fb3129a5adba4de49ecf
parent641dac98cddc63304e374a43c299d62b9dff52c9 (diff)
writerfilter: remove unused WW8Stream
Change-Id: I375b4768bc4474f78f6857176c8b77856609aeaa
-rw-r--r--writerfilter/inc/doctok/WW8Document.hxx101
-rw-r--r--writerfilter/source/filter/ImportFilter.cxx1
2 files changed, 0 insertions, 102 deletions
diff --git a/writerfilter/inc/doctok/WW8Document.hxx b/writerfilter/inc/doctok/WW8Document.hxx
deleted file mode 100644
index 0f017ac94ea8..000000000000
--- a/writerfilter/inc/doctok/WW8Document.hxx
+++ /dev/null
@@ -1,101 +0,0 @@
-/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
-/*
- * This file is part of the LibreOffice project.
- *
- * This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/.
- *
- * This file incorporates work covered by the following license notice:
- *
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements. See the NOTICE file distributed
- * with this work for additional information regarding copyright
- * ownership. The ASF licenses this file to you under the Apache
- * License, Version 2.0 (the "License"); you may not use this file
- * except in compliance with the License. You may obtain a copy of
- * the License at http://www.apache.org/licenses/LICENSE-2.0 .
- */
-
-#ifndef INCLUDED_WW8_DOCUMENT_HXX
-#define INCLUDED_WW8_DOCUMENT_HXX
-
-#include <boost/shared_ptr.hpp>
-#include <sal/types.h>
-#include <com/sun/star/uno/Reference.hxx>
-#include <resourcemodel/SubSequence.hxx>
-#include <com/sun/star/io/XInputStream.hpp>
-#include <com/sun/star/uno/XComponentContext.hpp>
-
-#include <resourcemodel/WW8ResourceModel.hxx>
-#include <resourcemodel/OutputWithDepth.hxx>
-
-#include <WriterFilterDllApi.hxx>
-
-namespace writerfilter {
-namespace doctok {
-
-using namespace ::com::sun::star;
-
-/**
- A stream containing a WW8 document.
-
- The content of the stream is a sequence of unsigned bytes. The
- stream consists of substreams that are identified by string
- identifiers.
-*/
-class WW8Stream
-{
-public:
- /**
- Pointer to a WW8Stream.
- */
- typedef boost::shared_ptr<WW8Stream> Pointer_t;
-
- /**
- Type for the content of the stream
- */
- typedef SubSequence<sal_uInt8> Sequence;
-
- virtual ~WW8Stream();
-
- /**
- Returns pointer to a substream.
-
- @param rSid identifier of substream to return
-
- @return the substream
- */
- virtual Pointer_t getSubStream(const OUString & rSid) = 0;
-
- /**
- Return a continious part of the stream.
-
- @param nOffset offset in the stream where the part starts
- @param nCount length of the part (number of bytes)
-
- @return sequence of unsigned bytes
- */
- virtual Sequence get(sal_uInt32 nOffset, sal_uInt32 nCount)
- const = 0;
-
- // Returns the names of substreams contained in the stream
- virtual string getSubStreamNames() const = 0;
-
- virtual uno::Sequence<OUString> getSubStreamUNames() const = 0;
-
- /**
- Dumps content of stream to output.
-
- @param o the target output
- */
- virtual void dump(OutputWithDepth<string> & o) const = 0;
-
- //virtual bool put(sal_uInt32 nOffset, const Sequence & rSeq) = 0;
-};
-
-}}
-
-#endif // INCLUDED_WW8_DOCUMENT_HXX
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/writerfilter/source/filter/ImportFilter.cxx b/writerfilter/source/filter/ImportFilter.cxx
index 843e37a276bf..90c4c98d1d38 100644
--- a/writerfilter/source/filter/ImportFilter.cxx
+++ b/writerfilter/source/filter/ImportFilter.cxx
@@ -28,7 +28,6 @@
#include <oox/core/filterdetect.hxx>
#include <dmapper/DomainMapper.hxx>
#include <WriterFilter.hxx>
-#include <doctok/WW8Document.hxx>
#include <ooxml/OOXMLDocument.hxx>
#ifdef DEBUG_IMPORT
#include <iostream>