]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathExFunc.h
Substack should not be allowed to change columns
[lyx.git] / src / mathed / InsetMathExFunc.h
index fb6dda8b360e2e84f7b68cab4bebcc1d98ee47fc..ff99140cca6a1eaa259d3a469143888748ef4e2f 100644 (file)
@@ -15,8 +15,6 @@
 
 #include "InsetMathNest.h"
 
-#include <string>
-
 
 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;
        ///
-       void 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_;
 };