]> git.lyx.org Git - lyx.git/blob - src/mathed/math_extern.h
oh well
[lyx.git] / src / mathed / math_extern.h
1 #ifndef MATH_EXTERN_H
2 #define MATH_EXTERN_H
3
4 class NormalStream;
5 class MapleStream;
6 class MathMLStream;
7 class OctaveStream;
8 class WriteStream;
9 class MathArray;
10
11 void write(MathArray const &, WriteStream &);
12 void normalize(MathArray const &, NormalStream &);
13 void maplize(MathArray const &, MapleStream &);
14 void mathmlize(MathArray const &, MathMLStream &);
15 void octavize(MathArray const &, OctaveStream &);
16
17 bool extractNumber(MathArray const & ar, int & i);
18 bool extractNumber(MathArray const & ar, double & i);
19
20 #endif