X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FInsetMathLim.h;h=bc95d0e38df834bfb848d99bb57713ff206a4c6f;hb=fc6ce7cd08562fd7bab4427880b46390bb7d2f07;hp=9914e216ca44e3faefc5106da9ef1ec54bd3ea86;hpb=e89625ef28143545a511cdabc67dee8b7be1b216;p=lyx.git diff --git a/src/mathed/InsetMathLim.h b/src/mathed/InsetMathLim.h index 9914e216ca..bc95d0e38d 100644 --- a/src/mathed/InsetMathLim.h +++ b/src/mathed/InsetMathLim.h @@ -18,12 +18,15 @@ #include "InsetMathNest.h" + +namespace lyx { + class InsetMathLim : public InsetMathNest { public: /// - InsetMathLim(MathArray const & f, MathArray const & x, MathArray const & x0); + InsetMathLim(MathData const & f, MathData const & x, MathData const & x0); /// - void metrics(MetricsInfo & mi, Dimension & dim) const; + bool metrics(MetricsInfo & mi, Dimension & dim) const; /// void draw(PainterInfo & pi, int x, int y) const; @@ -36,11 +39,14 @@ public: /// void mathematica(MathematicaStream &) const; /// - void mathmlize(MathMLStream &) const; + void mathmlize(MathStream &) const; /// void write(WriteStream & os) const; private: - virtual std::auto_ptr doClone() const; + virtual std::auto_ptr doClone() const; }; + + +} // namespace lyx #endif