mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 05:33:33 +00:00
34 lines
544 B
C
34 lines
544 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 const & st) const;
|
||
|
///
|
||
|
MathSubstackInset const * asSubstackInset() const { return this; }
|
||
|
|
||
|
///
|
||
|
void normalize();
|
||
|
///
|
||
|
void write(WriteStream & os) const;
|
||
|
///
|
||
|
void normalize(NormalStream &) const;
|
||
|
///
|
||
|
void maplize(MapleStream &) const;
|
||
|
};
|
||
|
|
||
|
#endif
|