]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_liminset.C
architectural changes to tex2lyx
[lyx.git] / src / mathed / math_liminset.C
index 5c1b1d8a4b9d8f83bc2276b21d62792269121734..353db5c4033b2cfbb5fd713d3746aef3252ee5de 100644 (file)
@@ -1,9 +1,14 @@
+#include <config.h>
+
 #include "math_liminset.h"
 #include "math_support.h"
 #include "math_mathmlstream.h"
 #include "math_symbolinset.h"
 #include "debug.h"
 
+using std::auto_ptr;
+using std::endl;
+
 
 MathLimInset::MathLimInset
        (MathArray const & f, MathArray const & x, MathArray const & x0)
@@ -15,9 +20,9 @@ MathLimInset::MathLimInset
 }
 
 
-MathInset * MathLimInset::clone() const
+auto_ptr<InsetBase> MathLimInset::clone() const
 {
-       return new MathLimInset(*this);
+       return auto_ptr<InsetBase>(new MathLimInset(*this));
 }
 
 
@@ -27,25 +32,25 @@ void MathLimInset::normalize(NormalStream & os) const
 }
 
 
-void MathLimInset::metrics(MathMetricsInfo &) const
+void MathLimInset::metrics(MetricsInfo &, Dimension &) const
 {
-       lyxerr << "should not happen\n";
+       lyxerr << "should not happen" << endl;
 }
 
 
-void MathLimInset::draw(MathPainterInfo &, int, int) const
+void MathLimInset::draw(PainterInfo &, int, int) const
 {
-       lyxerr << "should not happen\n";
+       lyxerr << "should not happen" << endl;
 }
 
 
-void MathLimInset::maplize(MapleStream & os) const
+void MathLimInset::maple(MapleStream & os) const
 {
        os << "limit(" << cell(0) << ',' << cell(1) << '=' << cell(2) << ')';
 }
 
 
-void MathLimInset::mathematicize(MathematicaStream & os) const
+void MathLimInset::mathematica(MathematicaStream & os) const
 {
        os << "Lim[" << cell(0) << ',' << cell(1) << ',' << cell(2) << ']';
 }
@@ -59,5 +64,5 @@ void MathLimInset::mathmlize(MathMLStream & os) const
 
 void MathLimInset::write(WriteStream &) const
 {
-       lyxerr << "should not happen\n";
+       lyxerr << "should not happen" << endl;
 }