X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FInsetMathExFunc.h;h=c3a43acfd1c0e0a605ab33a094316ae359701720;hb=2de30c62f8d671a8c8d4d52a6a7310e2c5ca84de;hp=ecd5c0a2f286d06639cb34512fb9c19e87bc1675;hpb=ed858d73e57ce7aa89e38c1bc4d799362edb0227;p=lyx.git diff --git a/src/mathed/InsetMathExFunc.h b/src/mathed/InsetMathExFunc.h index ecd5c0a2f2..c3a43acfd1 100644 --- a/src/mathed/InsetMathExFunc.h +++ b/src/mathed/InsetMathExFunc.h @@ -4,7 +4,7 @@ * This file is part of LyX, the document processor. * Licence details can be found in the file COPYING. * - * \author André Pönitz + * \author André Pönitz * * Full author contact details are available in file CREDITS. */ @@ -15,8 +15,6 @@ #include "InsetMathNest.h" -#include - namespace lyx { @@ -26,11 +24,11 @@ namespace lyx { class InsetMathExFunc : public InsetMathNest { public: /// - explicit InsetMathExFunc(docstring const & name); + InsetMathExFunc(Buffer * buf, docstring const & name); /// - InsetMathExFunc(docstring const & name, MathData const & ar); + InsetMathExFunc(Buffer * buf, docstring const & name, MathData const & ar); /// - bool metrics(MetricsInfo & mi, Dimension & dim) const; + void metrics(MetricsInfo & mi, Dimension & dim) const; /// void draw(PainterInfo & pi, int x, int y) const; /// @@ -45,7 +43,11 @@ public: /// void mathmlize(MathStream &) const; /// + void htmlize(HtmlStream &) const; + /// void octave(OctaveStream &) const; + /// + InsetCode lyxCode() const { return MATH_EXFUNC_CODE; } private: virtual Inset * clone() const;