]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathLim.h
rename LyXFont to Font except in tex2lyx
[lyx.git] / src / mathed / InsetMathLim.h
index 9914e216ca44e3faefc5106da9ef1ec54bd3ea86..bc95d0e38df834bfb848d99bb57713ff206a4c6f 100644 (file)
 
 #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<InsetBase> doClone() const;
+       virtual std::auto_ptr<Inset> doClone() const;
 };
 
+
+
+} // namespace lyx
 #endif