X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FInsetMathOverset.h;h=ac055e1dc92701fa749b9a9cea86114494eb54f1;hb=28be7d552f62cc02fa86d7f79201d089bfb2d7b5;hp=e737d623e933fe00730221d19d2af9cec845cc6d;hpb=f1cba8ff64b369792fd49f5ddf90e8126ab476ac;p=lyx.git diff --git a/src/mathed/InsetMathOverset.h b/src/mathed/InsetMathOverset.h index e737d623e9..ac055e1dc9 100644 --- a/src/mathed/InsetMathOverset.h +++ b/src/mathed/InsetMathOverset.h @@ -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; };