mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
18 lines
415 B
C
18 lines
415 B
C
|
#ifndef MATH_EXTERN_H
|
||
|
#define MATH_EXTERN_H
|
||
|
|
||
|
class NormalStream;
|
||
|
class MapleStream;
|
||
|
class MathMLStream;
|
||
|
class OctaveStream;
|
||
|
class WriteStream;
|
||
|
class MathArray;
|
||
|
|
||
|
void write(MathArray const &, WriteStream &);
|
||
|
void normalize(MathArray const &, NormalStream &);
|
||
|
void maplize(MathArray const &, MapleStream &);
|
||
|
void mathmlize(MathArray const &, MathMLStream &);
|
||
|
void octavize(MathArray const &, OctaveStream &);
|
||
|
|
||
|
#endif
|