lyx_mirror/src/mathed/math_substackinset.h
André Pönitz a794a45949 the up/down stuff reworked
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@4806 a592a061-630c-0410-9148-cb99ea01b6c8
2002-07-30 13:56:02 +00:00

34 lines
537 B
C++

// -*- C++ -*-
#ifndef MATH_SUBSTACK_H
#define MATH_SUBSTACK_H
#include "math_gridinset.h"
#ifdef __GNUG__
#pragma interface
#endif
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