]> git.lyx.org Git - lyx.git/blob - src/mathed/math_substackinset.h
rename commandtags.h to lfuns.h and renumber/cleanup. Rebuild the tree !
[lyx.git] / src / mathed / math_substackinset.h
1 // -*- C++ -*-
2 #ifndef MATH_SUBSTACK_H
3 #define MATH_SUBSTACK_H
4
5 #include "math_gridinset.h"
6
7
8
9 class MathSubstackInset : public MathGridInset {
10 public:
11         ///
12         MathSubstackInset();
13         ///
14         MathInset * clone() const;
15         ///
16         void metrics(MathMetricsInfo & mi) const;
17         ///
18         MathSubstackInset const * asSubstackInset() const { return this; }
19
20         ///
21         void normalize();
22         ///
23         void write(WriteStream & os) const;
24         ///
25         void normalize(NormalStream &) const;
26         ///
27         void maple(MapleStream &) const;
28 };
29
30 #endif