X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FInsetMathSqrt.h;h=d2aab3282b027c2665b6baf34fffa098c178f3a3;hb=5fdc577badb1cb133d6a0dc7d831bb1f82576adb;hp=8e19b367d8ecdc641b105e25a6e29688f92dffef;hpb=de6418f37765fe452f135f96dee6d49897bff215;p=lyx.git diff --git a/src/mathed/InsetMathSqrt.h b/src/mathed/InsetMathSqrt.h index 8e19b367d8..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; /// @@ -45,8 +45,15 @@ public: void octave(OctaveStream &) 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; };