]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathMatrix.h
Remove ; from end of function definitions
[lyx.git] / src / mathed / InsetMathMatrix.h
index 570b39b0815f3ddaedfc0120524faca1f1b827ad..26a854402606476c29b14cb78aa5010f33ff773c 100644 (file)
 #define MATH_MATRIXINSET_H
 
 #include "InsetMathGrid.h"
+#include "support/strfwd.h"
 
 
 namespace lyx {
 
 
-// "shortcut" for DelimInset("(",ArrayInset,")")
+// "shortcut" for DelimInset("(",ArrayInset,")") used by MathExtern
 
 class InsetMathMatrix : public InsetMathGrid {
 public:
        ///
-       explicit InsetMathMatrix(InsetMathGrid const &);
-       ///
-       explicit InsetMathMatrix(Buffer * buf, docstring const & str);
+       explicit InsetMathMatrix(InsetMathGrid const &, 
+                       docstring const & left, docstring const & right);
        /// identifies MatrixInsets
        InsetMathMatrix const * asMatrixInset() const { return this; }
 
@@ -42,12 +42,18 @@ public:
        ///
        void mathmlize(MathStream &) const;
        ///
+       void htmlize(HtmlStream &) const;
+       ///
        void octave(OctaveStream &) const;
        ///
        InsetCode lyxCode() const { return MATH_MATRIX_CODE; }
 
 private:
        virtual Inset * clone() const;
+       ///
+       docstring left_;
+       ///
+       docstring right_;
 };