]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_amsarrayinset.C
Compile fix gcc 2.95 + stlport
[lyx.git] / src / mathed / math_amsarrayinset.C
index ea64089128381d69bf76af12c7755a3432513bdc..1287d99a3f533e42ade65a6270fea7ae9e0c3bfc 100644 (file)
@@ -1,11 +1,23 @@
+/**
+ * \file math_amsarrayinset.C
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
+ *
+ * \author André Pönitz
+ *
+ * Full author contact details are available in file CREDITS.
+ */
+
 #include <config.h>
 
 #include "math_amsarrayinset.h"
+#include "math_data.h"
 #include "math_mathmlstream.h"
-#include "metricsinfo.h"
 #include "math_streamstr.h"
 #include "math_support.h"
-#include "Lsstream.h"
+
+using std::string;
+using std::auto_ptr;
 
 
 MathAMSArrayInset::MathAMSArrayInset(string const & name, int m, int n)
@@ -18,9 +30,9 @@ MathAMSArrayInset::MathAMSArrayInset(string const & name)
 {}
 
 
-MathInset * MathAMSArrayInset::clone() const
+auto_ptr<InsetBase> MathAMSArrayInset::clone() const
 {
-       return new MathAMSArrayInset(*this);
+       return auto_ptr<InsetBase>(new MathAMSArrayInset(*this));
 }