]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathDots.h
Revert "Fix a number of signedness warnings"
[lyx.git] / src / mathed / InsetMathDots.h
index f4f52716f66cd8fda1d2ff483075b016142e6c9e..2650de004457b85607292574d4b02be572e2b5f6 100644 (file)
@@ -23,22 +23,28 @@ class latexkeys;
 class InsetMathDots : public InsetMath {
 public:
        ///
-       explicit InsetMathDots(latexkeys const * l);
+       explicit InsetMathDots(latexkeys const * key);
        ///
-       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;
        /// request "external features"
-       void validate(LaTeXFeatures & features) const;
+       void validate(LaTeXFeatures & features) const override;
+       ///
+       InsetCode lyxCode() const override { return MATH_DOTS_CODE; }
+       ///
+       void mathmlize(MathStream & ms) const override;
+       ///
+       void htmlize(HtmlStream & os) const override;
 protected:
        /// cache for the thing's height
        mutable int dh_;
        ///
        latexkeys const * key_;
 private:
-       virtual Inset * clone() const;
+       Inset * clone() const override;
 };
 
 } // namespace lyx