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