lyx_mirror/src/mathed/math_substackinset.h

31 lines
496 B
C
Raw Normal View History

// -*- C++ -*-
#ifndef MATH_SUBSTACK_H
#define MATH_SUBSTACK_H
#include "math_gridinset.h"
class MathSubstackInset : public MathGridInset {
public:
///
MathSubstackInset();
///
MathInset * clone() const;
///
void metrics(MathMetricsInfo & mi) const;
///
MathSubstackInset const * asSubstackInset() const { return this; }
///
void normalize();
///
void write(WriteStream & os) const;
///
void normalize(NormalStream &) const;
///
void maplize(MapleStream &) const;
};
#endif