/* -*- 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/. */ #ifndef INCLUDED_WRITERPERFECT_SOURCE_WRITER_EPUBEXPORTFILTER_HXX #define INCLUDED_WRITERPERFECT_SOURCE_WRITER_EPUBEXPORTFILTER_HXX #include #include #include #include #include namespace writerperfect { /// EPUB export XFilter implementation. class EPUBExportFilter : public cppu::WeakImplHelper < css::document::XFilter, css::document::XExporter, css::lang::XServiceInfo > { css::uno::Reference mxContext; css::uno::Reference mxSourceDocument; public: EPUBExportFilter(const css::uno::Reference &xContext); // XFilter sal_Bool SAL_CALL filter(const css::uno::Sequence &rDescriptor) override; void SAL_CALL cancel() override; // XExporter void SAL_CALL setSourceDocument(const css::uno::Reference &xDocument) override; // XServiceInfo OUString SAL_CALL getImplementationName() override; sal_Bool SAL_CALL supportsService(const OUString &ServiceName) override; css::uno::Sequence SAL_CALL getSupportedServiceNames() override; }; } // namespace writerperfect #endif /* vim:set shiftwidth=4 softtabstop=4 expandtab: */