]> git.lyx.org Git - lyx.git/blob - src/mathed/math_lefteqninset.h
Fix.
[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
8 /// Support for LaTeX's \\lefteqn command
9
10 class MathLefteqnInset : public MathNestInset {
11 public:
12         ///
13         MathLefteqnInset();
14         ///
15         MathInset * clone() const;
16         ///
17         string name() const;
18         ///
19         void metrics(MathMetricsInfo & mi) const;
20         ///
21         void draw(MathPainterInfo & pi, int x, int y) const;
22         ///
23         void infoize(std::ostream & os) const;
24 };
25 #endif