]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_dotsinset.C
more IU
[lyx.git] / src / mathed / math_dotsinset.C
index c437d428739de797a19ff9d2bf6e3f2df3f67e08..c08c31a443c2327066278b51e498d15fe2ad1934 100644 (file)
@@ -1,20 +1,34 @@
+/**
+ * \file math_dotsinset.C
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
+ *
+ * \author Alejandro Aguilar Sierra
+ * \author André Pönitz
+ *
+ * Full author contact details are available in file CREDITS.
+ */
+
 #include <config.h>
 
 #include "math_dotsinset.h"
 #include "math_mathmlstream.h"
-#include "math_streamstr.h"
 #include "math_support.h"
 #include "math_parser.h"
 
 
+using std::string;
+using std::auto_ptr;
+
+
 MathDotsInset::MathDotsInset(latexkeys const * key)
        : key_(key)
 {}
 
 
-InsetBase * MathDotsInset::clone() const
+auto_ptr<InsetBase> MathDotsInset::clone() const
 {
-       return new MathDotsInset(*this);
+       return auto_ptr<InsetBase>(new MathDotsInset(*this));
 }