]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathSplit.h
Cmake export tests: Added sublabel handling also to revertedTests
[lyx.git] / src / mathed / InsetMathSplit.h
index 447aa0f4dd1a7ccdacceaa30a2e7fe8c2b43ad56..b0ff437f3ddcc5a2920f24f718024eca9062447a 100644 (file)
@@ -22,7 +22,7 @@ class InsetMathSplit : public InsetMathGrid {
 public:
        ///
        explicit InsetMathSplit(Buffer * buf, docstring const & name,
-               char valign = 'c');
+               char valign = 'c', bool numbered = false);
        ///
        void draw(PainterInfo & pi, int x, int y) const;
        ///
@@ -35,6 +35,8 @@ public:
        ///
        void mathmlize(MathStream &) const;
        ///
+       void htmlize(HtmlStream &) const;
+       ///
        void validate(LaTeXFeatures & features) const;
        ///
        int defaultColSpace(col_type) { return 0; }
@@ -48,6 +50,8 @@ private:
        virtual Inset * clone() const;
        ///
        docstring name_;
+       ///
+       bool numbered_;
 };