]> git.lyx.org Git - lyx.git/blob - src/mathed/math_liminset.h
18dc36d6d6c6b4bde22413620d2c259680a03685
[lyx.git] / src / mathed / math_liminset.h
1 // -*- C++ -*-
2 #ifndef MATH_LIMINSET_H
3 #define MATH_LIMINSET_H
4
5
6 // lim_{x->x0} f(x) in one block
7 // for interfacing external programs
8
9 #include "math_nestinset.h"
10
11 class MathLimInset : public MathNestInset {
12 public:
13         ///
14         MathLimInset(MathArray const & f, MathArray const & x, MathArray const & x0);
15         ///
16         MathInset * clone() const;
17         ///
18         void metrics(MathMetricsInfo & mi) const;
19         ///
20         void draw(MathPainterInfo & pi, int x, int y) const;
21
22         ///
23         void normalize(NormalStream &) const;
24         ///
25         void maplize(MapleStream &) const;
26         ///
27         void mathematicize(MathematicaStream &) const;
28         ///
29         void mathmlize(MathMLStream &) const;
30         ///
31         void write(WriteStream & os) const;
32 };
33
34 #endif