]> git.lyx.org Git - lyx.git/blob - src/mathed/math_diminset.C
use stream-like syntax for LaTeX output
[lyx.git] / src / mathed / math_diminset.C
1 #include "math_diminset.h"
2
3
4 MathDimInset::MathDimInset()
5         : MathInset(), width_(0), ascent_(0), descent_(0)
6 {}
7
8
9 int MathDimInset::ascent() const
10 {
11         return ascent_;
12 }
13
14
15 int MathDimInset::descent() const
16 {
17         return descent_;
18 }
19
20
21 int MathDimInset::width() const
22 {
23         return width_;
24 }