update credits
[LibreOffice.git] / include / oox / mathml / export.hxx
blob49a2afe7e3b0ee5f482fc02029052b43e3c682c8
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
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/.
8 */
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>
17 namespace oox
20 /**
21 Interface class, StarMath will implement writeFormula*() to write out markup
22 representing the formula.
24 class OOX_DLLPUBLIC FormulaExportBase
26 public:
27 virtual void writeFormulaOoxml( ::sax_fastparser::FSHelperPtr m_pSerializer, oox::core::OoxmlVersion version ) = 0;
28 virtual void writeFormulaRtf( OStringBuffer& rBuffer, rtl_TextEncoding nEncoding ) = 0;
30 protected:
31 FormulaExportBase();
33 ~FormulaExportBase() {}
36 } // namespace
38 #endif
40 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */