lyx_mirror/src/mathed/math_undersetinset.h
André Pönitz 66d171ea78 proper support for \underset
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@3469 a592a061-630c-0410-9148-cb99ea01b6c8
2002-02-01 10:33:06 +00:00

32 lines
516 B
C++

// -*- C++ -*-
#ifndef MATH_UNDERSETINSET_H
#define MATH_UNDERSETINSET_H
#include "math_fracbase.h"
#ifdef __GNUG__
#pragma interface
#endif
/** Underset objects
\author André Pönitz
*/
class MathUndersetInset : public MathFracbaseInset {
public:
///
MathUndersetInset();
///
MathInset * clone() const;
///
void metrics(MathMetricsInfo const & st) const;
///
void draw(Painter &, int x, int y) const;
///
void write(WriteStream & os) const;
///
void normalize(NormalStream &) const;
};
#endif