]> git.lyx.org Git - lyx.git/blob - src/mathed/math_arrayinset.h
fix pullArg when pressing <Delete> at the end of an cell
[lyx.git] / src / mathed / math_arrayinset.h
1 // -*- C++ -*-
2 #ifndef MATH_ARRAYINSET_H
3 #define MATH_ARRAYINSET_H
4
5 #include "math_gridinset.h"
6
7 #ifdef __GNUG__
8 #pragma interface
9 #endif
10
11
12 class MathArrayInset : public MathGridInset {
13 public: 
14         ///
15         MathArrayInset(int m, int n);
16         ///
17         virtual MathInset * clone() const;
18         ///
19         void Write(std::ostream &, bool fragile) const;
20 };
21
22 #endif