]> git.lyx.org Git - lyx.git/blob - src/mathed/math_splitinset.h
Fix.
[lyx.git] / src / mathed / math_splitinset.h
1 // -*- C++ -*-
2 #ifndef MATH_SPLITINSET_H
3 #define MATH_SPLITINSET_H
4
5 #include "math_gridinset.h"
6 #include "LString.h"
7
8
9
10 class MathSplitInset : public MathGridInset {
11 public:
12         ///
13         explicit MathSplitInset(string const & name);
14         ///
15         MathInset * clone() const;
16         ///
17         void write(WriteStream & os) const;
18         ///
19         int defaultColSpace(col_type) { return 0; }
20         ///
21         char defaultColAlign(col_type);
22 private:
23         ///
24         string name_;
25 };
26
27 #endif