]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_matrixinset.C
several small fixes for mathed
[lyx.git] / src / mathed / math_matrixinset.C
index ca615efc336555aad9b8c952490019df5443cea4..f1343b47362f52326f42b1c13c21dc6d57cbf230 100644 (file)
@@ -1,8 +1,20 @@
+/**
+ * \file math_matrixinset.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_matrixinset.h"
-#include "math_parser.h"
+#include "math_data.h"
 #include "math_mathmlstream.h"
-#include "Lsstream.h"
+
+using std::auto_ptr;
 
 
 MathMatrixInset::MathMatrixInset(MathGridInset const & p)
@@ -10,9 +22,9 @@ MathMatrixInset::MathMatrixInset(MathGridInset const & p)
 {}
 
 
-MathInset * MathMatrixInset::clone() const
+auto_ptr<InsetBase> MathMatrixInset::clone() const
 {
-       return new MathMatrixInset(*this);
+       return auto_ptr<InsetBase>(new MathMatrixInset(*this));
 }
 
 
@@ -28,7 +40,7 @@ void MathMatrixInset::normalize(NormalStream & os) const
 }
 
 
-void MathMatrixInset::maplize(MapleStream & os) const
+void MathMatrixInset::maple(MapleStream & os) const
 {
        os << "matrix(" << int(nrows()) << ',' << int(ncols()) << ",[";
        for (idx_type idx = 0; idx < nargs(); ++idx) {
@@ -40,7 +52,7 @@ void MathMatrixInset::maplize(MapleStream & os) const
 }
 
 
-void MathMatrixInset::maximize(MaximaStream & os) const
+void MathMatrixInset::maxima(MaximaStream & os) const
 {
        os << "matrix(";
        for (row_type row = 0; row < nrows(); ++row) {
@@ -64,7 +76,7 @@ void MathMatrixInset::mathmlize(MathMLStream & os) const
 }
 
 
-void MathMatrixInset::octavize(OctaveStream & os) const
+void MathMatrixInset::octave(OctaveStream & os) const
 {
        os << '[';
        for (row_type row = 0; row < nrows(); ++row) {