]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_arrayinset.h
forward search in math insets. ugly. seems to work. don't ask why.
[lyx.git] / src / mathed / math_arrayinset.h
index 13f2ee5736548020ad6d0773904ab553790b4d1c..d09dae7e8aa1f3c415d0961f65d22947208fe6e2 100644 (file)
@@ -15,18 +15,23 @@ public:
        MathArrayInset(int m, int n);
        ///
        MathArrayInset(int m, int n, char valign, string const & halign);
+       ///
+       MathArrayInset(char valign, string const & halign);
        /// convienience constructor from whitespace/newline seperated data
        MathArrayInset(string const & str);
        ///
        MathInset * clone() const;
        ///
-       void write(MathWriteInfo & os) const;
-       ///
-       void writeNormal(std::ostream &) const;
-       ///
        void metrics(MathMetricsInfo const & st) const;
        ///
        MathArrayInset * asArrayInset() { return this; }
+
+       ///
+       void write(WriteStream & os) const;
+       ///
+       void normalize(NormalStream &) const;
+       ///
+       void maplize(MapleStream &) const;
 };
 
 #endif