]> git.lyx.org Git - lyx.git/blob - src/mathed/math_diffinset.h
fix typo that put too many include paths for most people
[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 const & st) const;
20         ///
21         void draw(Painter &, int x, int y) const;
22
23         ///
24         void normalize(NormalStream &) const;
25         ///
26         void maplize(MapleStream &) const;
27         ///
28         void mathmlize(MathMLStream &) const;
29         ///
30         void write(WriteStream & os) const;
31 };
32
33 #endif