]> git.lyx.org Git - lyx.git/blob - src/mathed/math_limitopinset.h
fix typo that put too many include paths for most people
[lyx.git] / src / mathed / math_limitopinset.h
1 // -*- C++ -*-
2 #ifndef MATH_LIMITOPINSET_H
3 #define MATH_LIMITOPINSET_H
4
5 // /\sum_l^u f(x) in one block
6 // for interfacing external programs
7
8 #include "math_scriptinset.h"
9
10 class MathLimitOpInset : public MathInset {
11 public:
12         ///
13         MathLimitOpInset(MathScriptInset const &, MathArray const &);
14         ///
15         MathInset * clone() const;
16         ///
17         void metrics(MathMetricsInfo const & st) const;
18         ///
19         void draw(Painter &, int x, int y) const;
20         ///
21         void write(WriteStream & os) const;
22         ///
23         void normalize(NormalStream &) const;
24         ///
25         void maplize(MapleStream &) const;
26         ///
27         void mathmlize(MathMLStream &) const;
28 private:
29         ///
30         MathAtom int_;
31         ///
32         MathScriptInset scripts_;
33         ///
34         MathArray core_;
35         ///
36         MathArray diff_;
37 };
38 #endif