X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2Fmathed%2FInsetMathExFunc.h;h=ff99140cca6a1eaa259d3a469143888748ef4e2f;hb=89120ce72238077d08c52e4558d83f9d81e7d573;hp=0517484f388721dcd0136598593a4341b12a8bd8;hpb=8a0134cc8ce7de41d6d6911a1c4219ca958f2b71;p=lyx.git diff --git a/src/mathed/InsetMathExFunc.h b/src/mathed/InsetMathExFunc.h index 0517484f38..ff99140cca 100644 --- a/src/mathed/InsetMathExFunc.h +++ b/src/mathed/InsetMathExFunc.h @@ -15,8 +15,6 @@ #include "InsetMathNest.h" -#include - namespace lyx { @@ -30,27 +28,29 @@ public: /// InsetMathExFunc(Buffer * buf, docstring const & name, MathData const & ar); /// - void metrics(MetricsInfo & mi, Dimension & dim) const; + void metrics(MetricsInfo & mi, Dimension & dim) const override; /// - void draw(PainterInfo & pi, int x, int y) const; + void draw(PainterInfo & pi, int x, int y) const override; /// - docstring name() const; + docstring name() const override; /// - void maple(MapleStream &) const; + void maple(MapleStream &) const override; + /// + void maxima(MaximaStream &) const override; /// - void maxima(MaximaStream &) const; + void mathematica(MathematicaStream &) const override; /// - void mathematica(MathematicaStream &) const; + void mathmlize(MathMLStream &) const override; /// - docstring mathmlize(MathStream &) const; + void htmlize(HtmlStream &) const override; /// - void octave(OctaveStream &) const; + void octave(OctaveStream &) const override; /// - InsetCode lyxCode() const { return MATH_EXFUNC_CODE; } + InsetCode lyxCode() const override { return MATH_EXFUNC_CODE; } private: - virtual Inset * clone() const; + Inset * clone() const override; /// docstring const name_; };