]> git.lyx.org Git - lyx.git/blob - src/mathed/math_diminset.h
931efa9f4bd6f058b9605df2fd1f8964ee4132bb
[lyx.git] / src / mathed / math_diminset.h
1 // -*- C++ -*-
2 #ifndef MATH_DIMINSET_H
3 #define MATH_DIMINSET_H
4
5 #include "math_inset.h"
6
7 /// thing that need the dimension cache
8 class MathDimInset : public MathInset {
9 public:
10         MathDimInset();
11         /// 
12         int ascent() const;
13         ///
14         int descent() const;
15         ///
16         int width() const;
17
18 protected:
19         ///
20         int width_;
21         ///
22         int ascent_;
23         ///
24         int descent_;
25 };
26 #endif