]> git.lyx.org Git - lyx.git/blob - src/mathed/math_splitinset.h
fix typo that put too many include paths for most people
[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 #ifdef __GNUG__
9 #pragma interface
10 #endif
11
12
13 class MathSplitInset : public MathGridInset {
14 public:
15         ///
16         explicit MathSplitInset(string const & name);
17         ///
18         MathInset * clone() const;
19         ///
20         void write(WriteStream & os) const;
21         ///
22         int defaultColSpace(col_type) { return 0; }
23         ///
24         char defaultColAlign(col_type);
25 private:
26         ///
27         string name_;
28 };
29
30 #endif