]> git.lyx.org Git - features.git/blobdiff - src/mathed/math_casesinset.C
Replace LString.h with support/std_string.h,
[features.git] / src / mathed / math_casesinset.C
index ef90f1fdec92bce8dc3e24744b03197e6424dea9..a507cc231ecd0f44c1a49b1b582936e5131b5509 100644 (file)
@@ -1,12 +1,22 @@
-#include <config.h>
+/**
+ * \file math_casesinset.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_casesinset.h"
-#include "math_parser.h"
 #include "math_mathmlstream.h"
 #include "math_support.h"
 #include "LaTeXFeatures.h"
-#include "support/LOstream.h"
+#include "support/std_ostream.h"
+
+using std::auto_ptr;
 
 
 MathCasesInset::MathCasesInset(row_type n)
@@ -14,9 +24,9 @@ MathCasesInset::MathCasesInset(row_type n)
 {}
 
 
-InsetBase * MathCasesInset::clone() const
+auto_ptr<InsetBase> MathCasesInset::clone() const
 {
-       return new MathCasesInset(*this);
+       return auto_ptr<InsetBase>(new MathCasesInset(*this));
 }