summaryrefslogtreecommitdiff
path: root/oox/source
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/source
parenta555fa2fd52b498cbf779d7c8383d39144cb6ab8 (diff)
unusedcode.easy: Remove BinaryFilterBase
Diffstat (limited to 'oox/source')
-rw-r--r--oox/source/core/binaryfilterbase.cxx72
1 files changed, 0 insertions, 72 deletions
diff --git a/oox/source/core/binaryfilterbase.cxx b/oox/source/core/binaryfilterbase.cxx
deleted file mode 100644
index e28c6bce1551..000000000000
--- a/oox/source/core/binaryfilterbase.cxx
+++ /dev/null
@@ -1,72 +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.
- *
- ************************************************************************/
-
-#include "oox/core/binaryfilterbase.hxx"
-
-#include "oox/ole/olestorage.hxx"
-
-namespace oox {
-namespace core {
-
-// ============================================================================
-
-using namespace ::com::sun::star::lang;
-using namespace ::com::sun::star::io;
-using namespace ::com::sun::star::uno;
-
-using ::rtl::OUString;
-
-// ============================================================================
-
-BinaryFilterBase::BinaryFilterBase( const Reference< XComponentContext >& rxContext ) throw( RuntimeException ) :
- FilterBase( rxContext )
-{
-}
-
-BinaryFilterBase::~BinaryFilterBase()
-{
-}
-
-// private --------------------------------------------------------------------
-
-StorageRef BinaryFilterBase::implCreateStorage( const Reference< XInputStream >& rxInStream ) const
-{
- return StorageRef( new ::oox::ole::OleStorage( getComponentContext(), rxInStream, true ) );
-}
-
-StorageRef BinaryFilterBase::implCreateStorage( const Reference< XStream >& rxOutStream ) const
-{
- return StorageRef( new ::oox::ole::OleStorage( getComponentContext(), rxOutStream, true ) );
-}
-
-// ============================================================================
-
-} // namespace core
-} // namespace oox
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */