update emoji autocorrect entries from po-files
[LibreOffice.git] / include / oox / mathml / import.hxx
blob2617ff53e67c75a600b0fcb2b40a7db9c5b5d74d
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_IMPORT_HXX
10 #define INCLUDED_OOX_MATHML_IMPORT_HXX
12 #include <com/sun/star/embed/XEmbeddedObject.hpp>
13 #include <tools/gen.hxx>
15 #include <oox/dllapi.h>
17 namespace oox
20 namespace formulaimport
22 class XmlStream;
25 /**
26 Interface class, StarMath will implement readFormulaOoxml() to read OOXML
27 representing the formula and getFormulaSize() to provide the size of the resulting
28 formula.
30 class OOX_DLLPUBLIC FormulaImportBase
32 public:
33 virtual void readFormulaOoxml( oox::formulaimport::XmlStream& stream ) = 0;
34 virtual Size getFormulaSize() const = 0;
36 protected:
37 FormulaImportBase();
39 ~FormulaImportBase() {}
42 } // namespace
44 #endif
46 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */