lyx_mirror/src/mathed/math_lefteqninset.h
André Pönitz 45083e7d73 cosmetics
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@5252 a592a061-630c-0410-9148-cb99ea01b6c8
2002-09-10 15:53:33 +00:00

29 lines
490 B
C++

// -*- C++ -*-
#ifndef MATH_LEFTEQNINSET_H
#define MATH_LEFTEQNINSET_H
#include "math_nestinset.h"
#ifdef __GNUG__
#pragma interface
#endif
/// Support for LaTeX's \\lefteqn command
class MathLefteqnInset : public MathNestInset {
public:
///
MathLefteqnInset();
///
MathInset * clone() const;
///
string name() const;
///
void metrics(MathMetricsInfo & mi) const;
///
void draw(MathPainterInfo & pi, int x, int y) const;
///
void infoize(std::ostream & os) const;
};
#endif