]> git.lyx.org Git - features.git/blobdiff - src/mathed/math_substackinset.C
Replace LString.h with support/std_string.h,
[features.git] / src / mathed / math_substackinset.C
index 3f31105a583b163d861962c359fc07db2855fd30..08f425e79571cdd931dd56bbc46cfd7e9da2aca9 100644 (file)
@@ -1,9 +1,20 @@
+/**
+ * \file math_substackinset.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_substackinset.h"
 #include "math_mathmlstream.h"
-#include "math_streamstr.h"
-#include "support/LOstream.h"
+#include "support/std_ostream.h"
+
+using std::auto_ptr;
 
 
 MathSubstackInset::MathSubstackInset()
@@ -11,9 +22,9 @@ MathSubstackInset::MathSubstackInset()
 {}
 
 
-InsetBase * MathSubstackInset::clone() const
+auto_ptr<InsetBase> MathSubstackInset::clone() const
 {
-       return new MathSubstackInset(*this);
+       return auto_ptr<InsetBase>(new MathSubstackInset(*this));
 }