]> git.lyx.org Git - lyx.git/blob - src/mathed/math_extern.h
7517d73c6be457218b0b5d3ffafd7a5875d3126b
[lyx.git] / src / mathed / math_extern.h
1 #ifndef MATH_EXTERN_H
2 #define MATH_EXTERN_H
3
4
5 #include "LString.h"
6
7 class NormalStream;
8 class MapleStream;
9 class MaximaStream;
10 class MathematicaStream;
11 class MathMLStream;
12 class OctaveStream;
13 class WriteStream;
14 class MathArray;
15
16 void write(MathArray const &, WriteStream &);
17 void normalize(MathArray const &, NormalStream &);
18 void maplize(MathArray const &, MapleStream &);
19 void maximize(MathArray const &, MaximaStream &);
20 void mathematicize(MathArray const &, MathematicaStream &);
21 void mathmlize(MathArray const &, MathMLStream &);
22 void octavize(MathArray const &, OctaveStream &);
23
24 bool extractNumber(MathArray const & ar, int & i);
25 bool extractNumber(MathArray const & ar, double & i);
26
27 MathArray pipeThroughExtern(string const & lang, string const & extra,
28         MathArray const & ar);
29
30 #endif