]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathMatrix.h
* the old cursor is stored before dispatch and then used after moving
[lyx.git] / src / mathed / InsetMathMatrix.h
index e8c542130cf9e5500beaff4c0d05ef75475feb26..0b65634c64d94032405154ffa5b88335f3ea0fdf 100644 (file)
@@ -15,6 +15,9 @@
 #include "InsetMathGrid.h"
 
 
+namespace lyx {
+
+
 // "shortcut" for DelimInset("(",ArrayInset,")")
 
 class InsetMathMatrix : public InsetMathGrid {
@@ -22,7 +25,7 @@ public:
        ///
        explicit InsetMathMatrix(InsetMathGrid const &);
        ///
-       explicit InsetMathMatrix(std::string const & str);
+       explicit InsetMathMatrix(docstring const & str);
        /// identifies MatrixInsets
        InsetMathMatrix const * asMatrixInset() const { return this; }
 
@@ -37,11 +40,14 @@ public:
        ///
        void mathematica(MathematicaStream &) const;
        ///
-       void mathmlize(MathMLStream &) const;
+       void mathmlize(MathStream &) const;
        ///
        void octave(OctaveStream &) const;
 private:
-       virtual std::auto_ptr<InsetBase> doClone() const;
+       virtual std::auto_ptr<Inset> doClone() const;
 };
 
+
+
+} // namespace lyx
 #endif