]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_xarrowinset.C
revert Buffer LyxText->InsetText commit
[lyx.git] / src / mathed / math_xarrowinset.C
index 4db1538125e6170befe3a135994b8efba7e20734..75a16330ecd0e90d4d4b030d9261ae9800b3c17a 100644 (file)
@@ -1,10 +1,24 @@
+/**
+ * \file math_xarrowinset.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_xarrowinset.h"
-#include "math_support.h"
-#include "math_parser.h"
+#include "math_data.h"
 #include "math_mathmlstream.h"
 #include "math_streamstr.h"
+#include "math_support.h"
+
+
+using std::string;
+using std::auto_ptr;
 
 
 MathXArrowInset::MathXArrowInset(string const & name)
@@ -12,9 +26,9 @@ MathXArrowInset::MathXArrowInset(string const & name)
 {}
 
 
-InsetBase * MathXArrowInset::clone() const
+auto_ptr<InsetBase> MathXArrowInset::clone() const
 {
-       return new MathXArrowInset(*this);
+       return auto_ptr<InsetBase>(new MathXArrowInset(*this));
 }