]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_splitinset.C
macro rework
[lyx.git] / src / mathed / math_splitinset.C
index e7d9389cc78a06dde73e174138835924490239c8..83a9caf3b38e7aa6cc6ff56506c8e55fe3b83779 100644 (file)
@@ -1,12 +1,25 @@
-#ifdef __GNUG__
-#pragma implementation
-#endif
+/**
+ * \file math_splitinset.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_splitinset.h"
+#include "math_data.h"
 #include "math_mathmlstream.h"
 #include "math_streamstr.h"
 
 
+using std::string;
+using std::auto_ptr;
+
+
 MathSplitInset::MathSplitInset(string const & name)
        : MathGridInset(1, 1), name_(name)
 {
@@ -14,9 +27,9 @@ MathSplitInset::MathSplitInset(string const & name)
 }
 
 
-MathInset * MathSplitInset::clone() const
+auto_ptr<InsetBase> MathSplitInset::clone() const
 {
-       return new MathSplitInset(*this);
+       return auto_ptr<InsetBase>(new MathSplitInset(*this));
 }
 
 
@@ -36,7 +49,7 @@ void MathSplitInset::write(WriteStream & ws) const
 {
        if (ws.fragile())
                ws << "\\protect";
-       ws << "\\begin{" << name_ << "}";
+       ws << "\\begin{" << name_ << '}';
        MathGridInset::write(ws);
        if (ws.fragile())
                ws << "\\protect";