]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathExFunc.h
Revert "Fix a number of signedness warnings"
[lyx.git] / src / mathed / InsetMathExFunc.h
index 7a5b25310f62e51622226035249492ea4ae46b39..48c16e98d883b2aa0efda0addffdc0f72c90c736 100644 (file)
@@ -15,8 +15,6 @@
 
 #include "InsetMathNest.h"
 
-#include <string>
-
 
 namespace lyx {
 
@@ -26,31 +24,33 @@ 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);
        ///
-       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(MathStream &) 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_;
 };