2002-02-14 14:52:23 +00:00
|
|
|
// -*- C++ -*-
|
|
|
|
#ifndef MATH_SUBSTACK_H
|
|
|
|
#define MATH_SUBSTACK_H
|
|
|
|
|
|
|
|
#include "math_gridinset.h"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class MathSubstackInset : public MathGridInset {
|
2002-03-21 17:42:56 +00:00
|
|
|
public:
|
2002-02-14 14:52:23 +00:00
|
|
|
///
|
|
|
|
MathSubstackInset();
|
|
|
|
///
|
|
|
|
MathInset * clone() const;
|
|
|
|
///
|
2003-03-21 14:20:48 +00:00
|
|
|
void metrics(MetricsInfo & mi) const;
|
2002-02-14 14:52:23 +00:00
|
|
|
///
|
|
|
|
MathSubstackInset const * asSubstackInset() const { return this; }
|
|
|
|
|
|
|
|
///
|
|
|
|
void normalize();
|
|
|
|
///
|
|
|
|
void write(WriteStream & os) const;
|
|
|
|
///
|
|
|
|
void normalize(NormalStream &) const;
|
|
|
|
///
|
2003-02-14 14:30:09 +00:00
|
|
|
void maple(MapleStream &) const;
|
2002-02-14 14:52:23 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|