1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 #ifndef INCLUDED_OOX_MATHML_EXPORT_HXX
10 #define INCLUDED_OOX_MATHML_EXPORT_HXX
12 #include <sax/fshelper.hxx>
13 #include <rtl/strbuf.hxx>
14 #include <oox/core/filterbase.hxx>
15 #include <oox/dllapi.h>
21 Interface class, StarMath will implement writeFormula*() to write out markup
22 representing the formula.
24 class OOX_DLLPUBLIC FormulaExportBase
27 virtual void writeFormulaOoxml( ::sax_fastparser::FSHelperPtr m_pSerializer
, oox::core::OoxmlVersion version
) = 0;
28 virtual void writeFormulaRtf( OStringBuffer
& rBuffer
, rtl_TextEncoding nEncoding
) = 0;
33 ~FormulaExportBase() {}
40 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */