X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FInsetMathSqrt.h;h=d2aab3282b027c2665b6baf34fffa098c178f3a3;hb=02e82157ec583c3900e359de86be79fac6512387;hp=f3c9db0d16fffed64d9ba641941789e66171cee0;hpb=6c300f72a217722652dc27db9108e1050028979c;p=lyx.git diff --git a/src/mathed/InsetMathSqrt.h b/src/mathed/InsetMathSqrt.h index f3c9db0d16..d2aab3282b 100644 --- a/src/mathed/InsetMathSqrt.h +++ b/src/mathed/InsetMathSqrt.h @@ -5,7 +5,7 @@ * Licence details can be found in the file COPYING. * * \author Alejandro Aguilar Sierra - * \author André Pönitz + * \author André Pönitz * * Full author contact details are available in file CREDITS. */ @@ -23,7 +23,7 @@ namespace lyx { class InsetMathSqrt : public InsetMathNest { public: /// - InsetMathSqrt(); + InsetMathSqrt(Buffer * buf); /// void draw(PainterInfo &, int x, int y) const; /// @@ -44,9 +44,16 @@ public: /// void octave(OctaveStream &) const; /// - void mathmlize(MathMLStream &) const; + void mathmlize(MathStream &) const; + /// + void htmlize(HtmlStream &) const; + /// + InsetCode lyxCode() const { return MATH_SQRT_CODE; } + /// + void validate(LaTeXFeatures &) const; + private: - virtual std::auto_ptr doClone() const; + virtual Inset * clone() const; };