mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-13 14:32:04 +00:00
c9e78a825b
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@6150 a592a061-630c-0410-9148-cb99ea01b6c8
37 lines
659 B
C++
37 lines
659 B
C++
// -*- 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);
|
|
///
|
|
void metrics(MathMetricsInfo & mi) const;
|
|
///
|
|
void draw(MathPainterInfo & 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
|