]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathOverset.h
Set correctly the spacing between atoms in MathData
[lyx.git] / src / mathed / InsetMathOverset.h
index c5e728188593fd4aa7d56260569f2e6942b2913d..ac055e1dc92701fa749b9a9cea86114494eb54f1 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.
  */
@@ -21,6 +21,8 @@ namespace lyx {
 /// Inset for overset
 class InsetMathOverset : public InsetMathFracBase {
 public:
+       ///
+       InsetMathOverset(Buffer * buf) : InsetMathFracBase(buf) {}
        ///
        void metrics(MetricsInfo & mi, Dimension & dim) const;
        ///
@@ -34,7 +36,14 @@ public:
        ///
        void normalize(NormalStream &) const;
        ///
+       void mathmlize(MathStream &) const;
+       ///
+       void htmlize(HtmlStream &) const;
+       ///
        void validate(LaTeXFeatures & features) const;
+       ///
+       InsetCode lyxCode() const { return MATH_OVERSET_CODE; }
+
 private:
        virtual Inset * clone() const;
 };