mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
a794a45949
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@4806 a592a061-630c-0410-9148-cb99ea01b6c8
34 lines
537 B
C++
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
|