]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_splitinset.h
split inset -> inset + updatableinset
[lyx.git] / src / mathed / math_splitinset.h
index 56f452d66314b72a28e96918dfeab8a65170dc45..6ae28c861ac681a9bc24bcb8b22e82037d22ec37 100644 (file)
@@ -3,16 +3,14 @@
 #define MATH_SPLITINSET_H
 
 #include "math_gridinset.h"
+#include "LString.h"
 
-#ifdef __GNUG__
-#pragma interface
-#endif
 
 
 class MathSplitInset : public MathGridInset {
-public: 
+public:
        ///
-       explicit MathSplitInset(int n);
+       explicit MathSplitInset(string const & name);
        ///
        MathInset * clone() const;
        ///
@@ -20,7 +18,10 @@ public:
        ///
        int defaultColSpace(col_type) { return 0; }
        ///
-       char defaultColAlign(col_type) { return 'l'; }
+       char defaultColAlign(col_type);
+private:
+       ///
+       string name_;
 };
 
 #endif