]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathLim.h
Introduce a return value for mathmlize(). We will need this to be able
[lyx.git] / src / mathed / InsetMathLim.h
index 9ff2cbe025e18a57a602d5c855d09339e3c8a051..5d1f1a4c6ab63b02e9e091e71b03d2b61501547a 100644 (file)
@@ -24,7 +24,8 @@ namespace lyx {
 class InsetMathLim : public InsetMathNest {
 public:
        ///
-       InsetMathLim(MathData const & f, MathData const & x, MathData const & x0);
+       InsetMathLim(Buffer * buf, MathData const & f, MathData const & x,
+               MathData const & x0);
        ///
        void metrics(MetricsInfo & mi, Dimension & dim) const;
        ///
@@ -39,9 +40,12 @@ public:
        ///
        void mathematica(MathematicaStream &) const;
        ///
-       void mathmlize(MathStream &) const;
+       docstring mathmlize(MathStream &) const;
        ///
        void write(WriteStream & os) const;
+       ///
+       InsetCode lyxCode() const { return MATH_LIM_CODE; }
+
 private:
        virtual Inset * clone() const;
 };