]> git.lyx.org Git - lyx.git/blob - src/mathed/math_extern.h
enable direct input of #1...#9; some whitespace changes
[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 #endif