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