]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_splitinset.h
whichFont down to 5.3%
[lyx.git] / src / mathed / math_splitinset.h
index 2ef9348db95443419ce257c390ac2f0634f4c528..540efaf2a8833aae0b55fbb035d5940ea21f8cfb 100644 (file)
@@ -3,6 +3,7 @@
 #define MATH_SPLITINSET_H
 
 #include "math_gridinset.h"
+#include "LString.h"
 
 #ifdef __GNUG__
 #pragma interface
 class MathSplitInset : public MathGridInset {
 public: 
        ///
-       explicit MathSplitInset(int n);
+       explicit MathSplitInset(string const & name);
        ///
        MathInset * clone() const;
        ///
-       void write(std::ostream &, bool fragile) const;
+       void write(WriteStream & os) const;
        ///
-       int defaultColSpace(int) { return 0; }
+       int defaultColSpace(col_type) { return 0; }
        ///
-       char defaultColAlign(int) { return 'l'; }
+       char defaultColAlign(col_type);
+private:
+       ///
+       string name_;
 };
 
 #endif