]> git.lyx.org Git - lyx.git/blob - src/mathed/math_extern.h
Add In nsetOld * argument to updateInset to rebreak the correct par.
[lyx.git] / src / mathed / math_extern.h
1 // -*- C++ -*-
2 /**
3  * \file math_extern.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author André Pönitz
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #ifndef MATH_EXTERN_H
13 #define MATH_EXTERN_H
14
15
16 #include "LString.h"
17
18 class NormalStream;
19 class MapleStream;
20 class MaximaStream;
21 class MathematicaStream;
22 class MathMLStream;
23 class OctaveStream;
24 class WriteStream;
25 class MathArray;
26
27 void write(MathArray const &, WriteStream &);
28 void normalize(MathArray const &, NormalStream &);
29 void maple(MathArray const &, MapleStream &);
30 void maxima(MathArray const &, MaximaStream &);
31 void mathematica(MathArray const &, MathematicaStream &);
32 void mathmlize(MathArray const &, MathMLStream &);
33 void octave(MathArray const &, OctaveStream &);
34
35 bool extractNumber(MathArray const & ar, int & i);
36 bool extractNumber(MathArray const & ar, double & i);
37
38 MathArray pipeThroughExtern(string const & lang, string const & extra,
39         MathArray const & ar);
40
41 #endif