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_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>
20 namespace formulaimport
26 Interface class, StarMath will implement readFormulaOoxml() to read OOXML
27 representing the formula and getFormulaSize() to provide the size of the resulting
30 class OOX_DLLPUBLIC FormulaImportBase
33 virtual void readFormulaOoxml( oox::formulaimport::XmlStream
& stream
) = 0;
34 virtual Size
getFormulaSize() const = 0;
39 ~FormulaImportBase() {}
46 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */