]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathMatrix.h
Routines for calculating numerical labels for BibTeX citations.
[lyx.git] / src / mathed / InsetMathMatrix.h
index 570b39b0815f3ddaedfc0120524faca1f1b827ad..a62c8ea44b7bfb5a020e962b9810758b20099950 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; }
 
@@ -48,6 +48,10 @@ public:
 
 private:
        virtual Inset * clone() const;
+       ///
+       docstring left_;
+       ///
+       docstring right_;
 };