X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FInsetMathComment.h;h=8cfe1368d7cb01cbf7465b8d096af8776194cdf0;hb=02e82157ec583c3900e359de86be79fac6512387;hp=9f0b494301de12c742c95cdbf2cb98e1c0f55dab;hpb=ed858d73e57ce7aa89e38c1bc4d799362edb0227;p=lyx.git diff --git a/src/mathed/InsetMathComment.h b/src/mathed/InsetMathComment.h index 9f0b494301..8cfe1368d7 100644 --- a/src/mathed/InsetMathComment.h +++ b/src/mathed/InsetMathComment.h @@ -4,7 +4,7 @@ * This file is part of LyX, the document processor. * Licence details can be found in the file COPYING. * - * \author André Pönitz + * \author André Pönitz * * Full author contact details are available in file CREDITS. */ @@ -23,11 +23,13 @@ class latexkeys; class InsetMathComment : public InsetMathNest { public: /// - InsetMathComment(); + InsetMathComment(Buffer * buf); /// - explicit InsetMathComment(docstring const &); + InsetMathComment(MathData const & ar); /// - bool metrics(MetricsInfo & mi, Dimension & dim) const; + explicit InsetMathComment(Buffer * buf, docstring const &); + /// + void metrics(MetricsInfo & mi, Dimension & dim) const; /// void draw(PainterInfo & pi, int x, int y) const; /// @@ -40,13 +42,17 @@ public: /// void maple(MapleStream &) const; /// - void mathematica(MathematicaStream &) const; + void mathematica(MathematicaStream &) const {} /// - void octave(OctaveStream &) const; + void octave(OctaveStream &) const {} /// void mathmlize(MathStream &) const; /// + void htmlize(HtmlStream &) const; + /// void infoize(odocstream & os) const; + /// + InsetCode lyxCode() const { return MATH_COMMENT_CODE; } private: virtual Inset * clone() const; };