X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FInsetMathLim.h;h=634c595e7f2d796af3b89a0bd774bdf1c72fb094;hb=cdc847fd304019a19425a0d5d9d42a556a937097;hp=9914e216ca44e3faefc5106da9ef1ec54bd3ea86;hpb=e89625ef28143545a511cdabc67dee8b7be1b216;p=lyx.git diff --git a/src/mathed/InsetMathLim.h b/src/mathed/InsetMathLim.h index 9914e216ca..634c595e7f 100644 --- a/src/mathed/InsetMathLim.h +++ b/src/mathed/InsetMathLim.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. */ @@ -18,10 +18,14 @@ #include "InsetMathNest.h" + +namespace lyx { + class InsetMathLim : public InsetMathNest { public: /// - InsetMathLim(MathArray const & f, MathArray const & x, MathArray const & x0); + InsetMathLim(Buffer * buf, MathData const & f, MathData const & x, + MathData const & x0); /// void metrics(MetricsInfo & mi, Dimension & dim) const; /// @@ -36,11 +40,15 @@ public: /// void mathematica(MathematicaStream &) const; /// - void mathmlize(MathMLStream &) const; - /// void write(WriteStream & os) const; + /// + InsetCode lyxCode() const { return MATH_LIM_CODE; } + private: - virtual std::auto_ptr doClone() const; + virtual Inset * clone() const; }; + + +} // namespace lyx #endif