mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
9921635d78
first shot at transformation 'sin^2 x' -> 'sin(x)^2' git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2992 a592a061-630c-0410-9148-cb99ea01b6c8
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
|