/* -*- 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/. */ #include #include namespace writerfilter { namespace dmapper { Stream::Pointer_t DomainMapperFactory::createMapper(css::uno::Reference const& xContext, css::uno::Reference const& xInputStream, css::uno::Reference const& xModel, bool bRepairStorage, SourceDocumentType eDocumentType, utl::MediaDescriptor& rMediaDesc) { #ifdef DEBUG_WRITERFILTER OUString sURL = rMediaDesc.getUnpackedValueOrDefault(utl::MediaDescriptor::PROP_URL(), OUString()); ::std::string sURLc = OUStringToOString(sURL, RTL_TEXTENCODING_ASCII_US).getStr(); if (getenv("SW_DEBUG_WRITERFILTER")) TagLogger::getInstance().setFileName(sURLc); TagLogger::getInstance().startDocument(); #endif return Stream::Pointer_t(new DomainMapper(xContext, xInputStream, xModel, bRepairStorage, eDocumentType, rMediaDesc)); } } // namespace dmapper } // namespace writerfilter /* vim:set shiftwidth=4 softtabstop=4 expandtab: */