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