]> git.lyx.org Git - lyx.git/blob - src/mathed/math_notinset.h
try to fix rounding errors
[lyx.git] / src / mathed / math_notinset.h
1 // -*- C++ -*-
2 #ifndef MATH_NOTINSET_H
3 #define MATH_NOTINSET_H
4
5 #include "math_diminset.h"
6
7 // \\not
8
9 class MathNotInset : public MathDimInset {
10 public:
11         ///
12         MathNotInset();
13         ///
14         MathInset * clone() const;
15         ///
16         void write(WriteStream & os) const;
17         ///
18         void normalize(NormalStream & ns) const;
19         ///
20         void metrics(MathMetricsInfo & mi) const;
21         ///
22         void draw(MathPainterInfo &, int x, int y) const;
23 private:
24         ///
25         mutable LyXFont font_;
26         ///
27         mutable char char_;
28 };
29 #endif