lyx_mirror/src/mathed/math_diffinset.h

37 lines
656 B
C
Raw Normal View History

// -*- C++ -*-
#ifndef MATH_DIFFINSET_H
#define MATH_DIFFINSET_H
// d f(x)/dx in one block
// for interfacing external programs
#include "math_nestinset.h"
class MathDiffInset : public MathNestInset {
public:
///
explicit MathDiffInset();
///
MathInset * clone() const;
///
void addDer(MathArray const & der);
///
Dimension metrics(MetricsInfo & mi) const;
///
void draw(PainterInfo & pi, int x, int y) const;
///
void normalize(NormalStream &) const;
///
void maple(MapleStream &) const;
///
void mathematica(MathematicaStream &) const;
///
void mathmlize(MathMLStream &) const;
///
void write(WriteStream & os) const;
};
#endif