]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathStackrel.h
Revert some recent test changes
[lyx.git] / src / mathed / InsetMathStackrel.h
index 707985b4bea522808fbc9cf2f9d0d0468fb62d45..91862a7792b8ecf8e62629757cdc745b420a3c27 100644 (file)
 
 namespace lyx {
 
-
-/** Stackrel objects
- *  \author André Pönitz
- *
- * Full author contact details are available in file CREDITS.
- */
 class InsetMathStackrel : public InsetMathFracBase {
 public:
        ///
-       InsetMathStackrel(Buffer * buf);
+       InsetMathStackrel(Buffer * buf, bool sub);
+       ///
+       bool idxUpDown(Cursor &, bool up) const;
        ///
        void metrics(MetricsInfo & mi, Dimension & dim) const;
        ///
@@ -38,13 +34,15 @@ public:
        ///
        void mathmlize(MathStream &) const;
        ///
+       void htmlize(HtmlStream &) const;
+       /// 
+       void validate(LaTeXFeatures &) const;
+       ///
        InsetCode lyxCode() const { return MATH_STACKREL_CODE; }
 
 private:
        virtual Inset * clone() const;
 };
 
-
-
 } // namespace lyx
 #endif