]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_matrixinset.h
fix #1073
[lyx.git] / src / mathed / math_matrixinset.h
index dd1636131b7d9e9243af42b83a09e64e3140bfd9..e77b8253a949fa33f7c9ee1489dbc9fdadb5cb27 100644 (file)
@@ -2,24 +2,21 @@
 #ifndef MATH_MATRIXINSET_H
 #define MATH_MATRIXINSET_H
 
-#include "math_arrayinset.h"
+#include "math_gridinset.h"
 
-#ifdef __GNUG__
-#pragma interface
-#endif
 
 // "shortcut" for DelimInset("(",ArrayInset,")")
 
-class MathMatrixInset : public MathArrayInset {
+class MathMatrixInset : public MathGridInset {
 public:
        ///
-       MathMatrixInset(MathArrayInset const &);
+       MathMatrixInset(MathGridInset const &);
        ///
        MathMatrixInset(string const & str);
        ///
        MathInset * clone() const;
        ///
-       void metrics(MathMetricsInfo const &) const {}
+       void metrics(MetricsInfo &) const {}
        /// identifies MatrixInsets
        MathMatrixInset const * asMatrixInset() const { return this; }
 
@@ -28,11 +25,13 @@ public:
        ///
        void normalize(NormalStream &) const;
        ///
-       void maplize(MapleStream &) const;
+       void maple(MapleStream &) const;
+       ///
+       void maxima(MaximaStream &) const;
        ///
        void mathmlize(MathMLStream &) const;
        ///
-       void octavize(OctaveStream &) const;
+       void octave(OctaveStream &) const;
 };
 
 #endif