summaryrefslogtreecommitdiff
path: root/oox/inc
diff options
context:
space:
mode:
authorThomas Arnhold <thomas@arnhold.org>2012-04-12 11:01:02 +0200
committerThomas Arnhold <thomas@arnhold.org>2012-04-12 11:39:13 +0200
commitab01a70b7f809f9ac8a1c342244665331751aecd (patch)
tree600f66a835dea2cd3faf4486aee26427dc3afec5 /oox/inc
parenta555fa2fd52b498cbf779d7c8383d39144cb6ab8 (diff)
unusedcode.easy: Remove BinaryFilterBase
Diffstat (limited to 'oox/inc')
-rw-r--r--oox/inc/oox/core/binaryfilterbase.hxx65
1 files changed, 0 insertions, 65 deletions
diff --git a/oox/inc/oox/core/binaryfilterbase.hxx b/oox/inc/oox/core/binaryfilterbase.hxx
deleted file mode 100644
index 566452582a46..000000000000
--- a/oox/inc/oox/core/binaryfilterbase.hxx
+++ /dev/null
@@ -1,65 +0,0 @@
-/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
-/*************************************************************************
- *
- * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
- * Copyright 2000, 2010 Oracle and/or its affiliates.
- *
- * OpenOffice.org - a multi-platform office productivity suite
- *
- * This file is part of OpenOffice.org.
- *
- * OpenOffice.org is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License version 3
- * only, as published by the Free Software Foundation.
- *
- * OpenOffice.org is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Lesser General Public License version 3 for more details
- * (a copy is included in the LICENSE file that accompanied this code).
- *
- * You should have received a copy of the GNU Lesser General Public License
- * version 3 along with OpenOffice.org. If not, see
- * <http://www.openoffice.org/license.html>
- * for a copy of the LGPLv3 License.
- *
- ************************************************************************/
-
-#ifndef OOX_CORE_BINARYFILTERBASE_HXX
-#define OOX_CORE_BINARYFILTERBASE_HXX
-
-#include <rtl/ref.hxx>
-#include "oox/core/filterbase.hxx"
-
-namespace oox {
-namespace core {
-
-// ============================================================================
-
-class OOX_DLLPUBLIC BinaryFilterBase : public FilterBase
-{
-public:
- explicit BinaryFilterBase(
- const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext >& rxContext )
- throw( ::com::sun::star::uno::RuntimeException );
-
- virtual ~BinaryFilterBase();
-
-private:
- virtual StorageRef implCreateStorage(
- const ::com::sun::star::uno::Reference< ::com::sun::star::io::XInputStream >& rxInStream ) const;
- virtual StorageRef implCreateStorage(
- const ::com::sun::star::uno::Reference< ::com::sun::star::io::XStream >& rxOutStream ) const;
-};
-
-typedef ::rtl::Reference< BinaryFilterBase > BinaryFilterRef;
-
-// ============================================================================
-
-} // namespace core
-} // namespace oox
-
-#endif
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */