]> git.lyx.org Git - lyx.git/blob - src/mathed/math_splitinset.h
make \newcommand{\bb}[1]{\mathbf{#1}} work for read/write/display.
[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
7 #ifdef __GNUG__
8 #pragma interface
9 #endif
10
11
12 class MathSplitInset : public MathGridInset {
13 public: 
14         ///
15         explicit MathSplitInset(int n);
16         ///
17         MathInset * clone() const;
18         ///
19         void write(WriteStream & os) const;
20         ///
21         int defaultColSpace(col_type) { return 0; }
22         ///
23         char defaultColAlign(col_type) { return 'l'; }
24 };
25
26 #endif