]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathSubstack.h
Fix #10871 compiler warnings.
[lyx.git] / src / mathed / InsetMathSubstack.h
index e42a4aaa7ef7e328395637ddf0c705b2eb4a3180..822b0aa4533427ec71dc22a9cd50cf3012a33478 100644 (file)
@@ -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.
  */
@@ -23,9 +23,9 @@ namespace lyx {
 class InsetMathSubstack : public InsetMathGrid {
 public:
        ///
-       InsetMathSubstack();
+       InsetMathSubstack(Buffer * buf);
        ///
-       bool metrics(MetricsInfo & mi, Dimension & dim) const;
+       void metrics(MetricsInfo & mi, Dimension & dim) const;
        ///
        void draw(PainterInfo & pi, int x, int y) const;
        ///
@@ -39,11 +39,18 @@ public:
        ///
        void write(WriteStream & os) const;
        ///
+       void mathmlize(MathStream &) const;
+       ///
+       void htmlize(HtmlStream &) const;
+       ///
        void normalize(NormalStream &) const;
        ///
        void maple(MapleStream &) const;
        ///
-       void validate(LaTeXFeatures & features) const;
+       void validate(LaTeXFeatures &) const;
+       ///
+       InsetCode lyxCode() const { return MATH_SUBSTACK_CODE; }
+
 private:
        virtual Inset * clone() const;
 };