]> git.lyx.org Git - lyx.git/blob - src/mathed/math_lefteqninset.h
remove unneeded member
[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 /// Support for LaTeX's \\lefteqn command
12
13 class MathLefteqnInset : public MathNestInset {
14 public:
15         ///
16         MathLefteqnInset();
17         ///
18         MathInset * clone() const;
19         ///
20         void draw(MathPainterInfo &, int x, int y) const;
21         ///
22         void write(WriteStream & os) const;
23         ///
24         void normalize(NormalStream &) const;
25         ///
26         void metrics(MathMetricsInfo & st) const;
27 };
28 #endif