diff options
author | Miklos Vajna <vmiklos@suse.cz> | 2012-07-25 11:31:03 +0200 |
---|---|---|
committer | Miklos Vajna <vmiklos@suse.cz> | 2012-07-25 14:12:05 +0200 |
commit | 73e7cef672d7b47c7e8a2feda9a1499ea001b9cb (patch) | |
tree | 58e03df97a95b8a4408c8e3b157d8c1f590c4bbb /oox/inc | |
parent | 8429bd67715a33751f4cfd50cb4be0346d78ee65 (diff) |
export RTF_M{OMATH,R,F,FPR,TYPE,NUM,DEN,MATH}
Change-Id: If717d5d3b2179210516eec61959af0afa8b38319
Diffstat (limited to 'oox/inc')
-rw-r--r-- | oox/inc/oox/mathml/export.hxx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/oox/inc/oox/mathml/export.hxx b/oox/inc/oox/mathml/export.hxx index 6c35feba4b92..7d6a7dbb91d9 100644 --- a/oox/inc/oox/mathml/export.hxx +++ b/oox/inc/oox/mathml/export.hxx @@ -29,6 +29,7 @@ #define _OOXMLEXPORT_HXX #include <sax/fshelper.hxx> +#include <rtl/strbuf.hxx> #include <oox/core/filterbase.hxx> #include <oox/dllapi.h> @@ -36,13 +37,14 @@ namespace oox { /** - Interface class, StarMath will implement writeFormulaOoxml() to write out OOXML + Interface class, StarMath will implement writeFormula*() to write out markup representing the formula. */ class OOX_DLLPUBLIC FormulaExportBase { public: virtual void writeFormulaOoxml( ::sax_fastparser::FSHelperPtr m_pSerializer, oox::core::OoxmlVersion version ) = 0; + virtual void writeFormulaRtf( OStringBuffer& rBuffer ) = 0; protected: FormulaExportBase(); |