]> git.lyx.org Git - lyx.git/blob - src/mathed/math_extern.h
several smallish changes/bugfixes/left overs from Porto
[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 MathMLStream;
9 class OctaveStream;
10 class WriteStream;
11 class MathArray;
12
13 void write(MathArray const &, WriteStream &);
14 void normalize(MathArray const &, NormalStream &);
15 void maplize(MathArray const &, MapleStream &);
16 void mathmlize(MathArray const &, MathMLStream &);
17 void octavize(MathArray const &, OctaveStream &);
18
19 bool extractNumber(MathArray const & ar, int & i);
20 bool extractNumber(MathArray const & ar, double & i);
21
22 MathArray pipeThroughExtern(string const & lang, string const & extra,
23         MathArray const & ar);
24
25 #endif