]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathOverset.h
Account for old versions of Pygments
[lyx.git] / src / mathed / InsetMathOverset.h
index e737d623e933fe00730221d19d2af9cec845cc6d..ac055e1dc92701fa749b9a9cea86114494eb54f1 100644 (file)
@@ -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;
 };