X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FInsetMathMatrix.h;h=26a854402606476c29b14cb78aa5010f33ff773c;hb=6de3c19fd63f810eed90ef3bc4469faf28e949c2;hp=971c30129ed6c772782958554d42f7537165cb59;hpb=05336422a4d708adebef1fbd861b74086befbe5a;p=lyx.git diff --git a/src/mathed/InsetMathMatrix.h b/src/mathed/InsetMathMatrix.h index 971c30129e..26a8544026 100644 --- a/src/mathed/InsetMathMatrix.h +++ b/src/mathed/InsetMathMatrix.h @@ -13,6 +13,7 @@ #define MATH_MATRIXINSET_H #include "InsetMathGrid.h" +#include "support/strfwd.h" namespace lyx { @@ -23,9 +24,8 @@ namespace lyx { 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_; };