]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_kerninset.C
Compile fix gcc 2.95 + stlport
[lyx.git] / src / mathed / math_kerninset.C
index 88e5fff4e9b6b43e6bd2918f11f3ae328294063c..8807f0ec5b52e6a8e0e947bdcc451af86eab2bbb 100644 (file)
@@ -1,11 +1,24 @@
-#include <config.h>
+/**
+ * \file math_kerninset.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_kerninset.h"
-#include "math_extern.h"
 #include "math_mathmlstream.h"
 #include "math_streamstr.h"
 #include "math_support.h"
+#include "dimension.h"
+
+
+using std::string;
+using std::auto_ptr;
 
 
 MathKernInset::MathKernInset()
@@ -22,9 +35,9 @@ MathKernInset::MathKernInset(string const & s)
 {}
 
 
-InsetBase * MathKernInset::clone() const
+auto_ptr<InsetBase> MathKernInset::clone() const
 {
-       return new MathKernInset(*this);
+       return auto_ptr<InsetBase>(new MathKernInset(*this));
 }