]> git.lyx.org Git - lyx.git/blob - src/mathed/math_diminset.C
enable direct input of #1...#9; some whitespace changes
[lyx.git] / src / mathed / math_diminset.C
1 #include <config.h>
2
3 #include "math_diminset.h"
4
5
6 MathDimInset::MathDimInset()
7         : MathInset(), width_(0), ascent_(0), descent_(0)
8 {}
9
10
11 int MathDimInset::ascent() const
12 {
13         return ascent_;
14 }
15
16
17 int MathDimInset::descent() const
18 {
19         return descent_;
20 }
21
22
23 int MathDimInset::width() const
24 {
25         return width_;
26 }