]> git.lyx.org Git - lyx.git/blob - src/mathed/math_dotsinset.h
more mathed cleanup
[lyx.git] / src / mathed / math_dotsinset.h
1 #ifndef MATH_DOTSINSET_H
2 #define MATH_DOTSINSET_H
3
4 #include "math_inset.h"
5 #include "math_defs.h"
6
7 ///
8 class MathDotsInset: public MathedInset {
9 public:
10         ///
11         MathDotsInset(string const &, int, short st = LM_ST_TEXT);
12         ///
13         MathedInset * Clone();
14         ///
15         void draw(Painter &, int, int);
16         ///
17         void Write(std::ostream &, bool fragile);
18         ///
19         void Metrics();
20 protected:
21         ///
22         int dh, code;
23 };   
24 #endif