]> git.lyx.org Git - lyx.git/blob - src/mathed/math_lefteqninset.h
de99a1273aaccaee2b092bb52635c2de65002ad0
[lyx.git] / src / mathed / math_lefteqninset.h
1 // -*- C++ -*-
2 #ifndef MATH_LEFTEQNINSET_H
3 #define MATH_LEFTEQNINSET_H
4
5 #include "math_nestinset.h"
6
7 #ifdef __GNUG__
8 #pragma interface
9 #endif
10
11 /// The \kern primitive
12
13 class MathLefteqnInset : public MathNestInset {
14 public:
15         ///
16         MathLefteqnInset();
17         ///
18         MathInset * clone() const;
19         ///
20         void draw(Painter &, int x, int y) const;
21         ///
22         void write(std::ostream &, bool fragile) const;
23         ///
24         void writeNormal(std::ostream &) const;
25         ///
26         void metrics(MathStyles st) const;
27 };
28 #endif