]> git.lyx.org Git - lyx.git/blob - src/mathed/math_notinset.h
917e5bb7ff2b0e452c34699c7ef2eb5b7f19c489
[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 struct latexkeys;
8
9 // \\not
10
11 class MathNotInset : public MathDimInset {
12 public:
13         ///
14         MathNotInset();
15         ///
16         MathInset * clone() const;
17         ///
18         void write(std::ostream &, bool fragile) const;
19         ///
20         void writeNormal(std::ostream &) const;
21         ///
22         void metrics(MathStyles st) const;
23         ///
24         void draw(Painter &, int x, int y) const;
25 };
26 #endif