]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_arrayinset.h
use stream-like syntax for LaTeX output
[lyx.git] / src / mathed / math_arrayinset.h
index 240c2bf42cd1b52f810231242177fd574fef32d1..79fa2130dabad47dee6bc63ab4c5bd9f271c7a0b 100644 (file)
@@ -14,11 +14,15 @@ public:
        ///
        MathArrayInset(int m, int n);
        ///
-       virtual MathInset * clone() const;
+       MathArrayInset(int m, int n, char valign, string const & halign);
        ///
-       void write(std::ostream &, bool fragile) const;
+       MathInset * clone() const;
        ///
-       bool isArray() const { return true; }
+       void write(MathWriteInfo & os) const;
+       ///
+       void metrics(MathMetricsInfo const & st) const;
+       ///
+       MathArrayInset * asArrayInset() { return this; }
 };
 
 #endif