]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_splitinset.h
architectural changes to tex2lyx
[lyx.git] / src / mathed / math_splitinset.h
index 56f452d66314b72a28e96918dfeab8a65170dc45..efd6f2c483d3fe82f87a6ea7ddb432f941c0724a 100644 (file)
@@ -3,24 +3,25 @@
 #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;
+       virtual std::auto_ptr<InsetBase> clone() const;
        ///
        void write(WriteStream & os) const;
        ///
        int defaultColSpace(col_type) { return 0; }
        ///
-       char defaultColAlign(col_type) { return 'l'; }
+       char defaultColAlign(col_type);
+private:
+       ///
+       string name_;
 };
 
 #endif