]> git.lyx.org Git - features.git/blobdiff - src/mathed/math_splitinset.h
Replace LString.h with support/std_string.h,
[features.git] / src / mathed / math_splitinset.h
index 2ef9348db95443419ce257c390ac2f0634f4c528..94ab3287c8c41db2a1b0006e42d5c07fe01379a2 100644 (file)
@@ -1,26 +1,36 @@
 // -*- C++ -*-
+/**
+ * \file math_splitinset.h
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
+ *
+ * \author André Pönitz
+ *
+ * Full author contact details are available in file CREDITS.
+ */
+
 #ifndef MATH_SPLITINSET_H
 #define MATH_SPLITINSET_H
 
 #include "math_gridinset.h"
-
-#ifdef __GNUG__
-#pragma interface
-#endif
+#include "support/std_string.h"
 
 
 class MathSplitInset : public MathGridInset {
-public: 
+public:
+       ///
+       explicit MathSplitInset(string const & name);
        ///
-       explicit MathSplitInset(int n);
+       virtual std::auto_ptr<InsetBase> clone() const;
        ///
-       MathInset * clone() const;
+       void write(WriteStream & os) const;
        ///
-       void write(std::ostream &, bool fragile) const;
+       int defaultColSpace(col_type) { return 0; }
        ///
-       int defaultColSpace(int) { return 0; }
+       char defaultColAlign(col_type);
+private:
        ///
-       char defaultColAlign(int) { return 'l'; }
+       string name_;
 };
 
 #endif