X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FInsetMathUnderset.h;h=239a576aebb06d6d4b909a4553dbe4119621e8b9;hb=9296344b9a26191a2092d175a51e357ecc35145d;hp=51311e6c6fb56e6a5c06a449c6c49dbf9395d9f5;hpb=f1cba8ff64b369792fd49f5ddf90e8126ab476ac;p=lyx.git diff --git a/src/mathed/InsetMathUnderset.h b/src/mathed/InsetMathUnderset.h index 51311e6c6f..239a576aeb 100644 --- a/src/mathed/InsetMathUnderset.h +++ b/src/mathed/InsetMathUnderset.h @@ -21,6 +21,8 @@ namespace lyx { /// Inset for underset class InsetMathUnderset : public InsetMathFracBase { public: + /// + InsetMathUnderset(Buffer * buf) : InsetMathFracBase(buf) {} /// void metrics(MetricsInfo & mi, Dimension & dim) const; /// @@ -36,7 +38,14 @@ public: /// void normalize(NormalStream & ns) const; /// + void mathmlize(MathStream &) const; + /// + void htmlize(HtmlStream &) const; + /// void validate(LaTeXFeatures & features) const; + /// + InsetCode lyxCode() const { return MATH_UNDERSET_CODE; } + private: virtual Inset * clone() const; };