lyx_mirror/src/mathed/math_stackrelinset.h

31 lines
543 B
C
Raw Normal View History

// -*- C++ -*-
#ifndef MATH_STACKRELINSET_H
#define MATH_STACKRELINSET_H
#include "math_fracbase.h"
/** Stackrel objects
* \author Andr<EFBFBD> P<EFBFBD>nitz
*
* Full author contact details are available in file CREDITS
*/
class MathStackrelInset : public MathFracbaseInset {
public:
///
MathStackrelInset();
///
MathInset * clone() const;
///
void metrics(MathMetricsInfo & mi) const;
///
void draw(MathPainterInfo & pi, int x, int y) const;
///
void write(WriteStream & os) const;
///
void normalize(NormalStream &) const;
};
#endif