]> git.lyx.org Git - lyx.git/blob - src/mathed/math_dotsinset.h
first go at mathed file 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
6 ///
7 class MathDotsInset: public MathedInset {
8 public:
9         ///
10         MathDotsInset(string const &, int, short st = LM_ST_TEXT);
11         ///
12         MathedInset * Clone();
13         ///
14         void draw(Painter &, int, int);
15         ///
16         void Write(std::ostream &, bool fragile);
17         ///
18         void Metrics();
19 protected:
20         ///
21         int dh, code;
22 };   
23 #endif