X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2Fmath_extern.h;h=94406652d05f18ddcd407ad6e05e4206e301ef3f;hb=c9e78a825bd659ddb7b4b55a6adfa7f0a1a98dd6;hp=9e2f23c8b532fba0f936d99793c76babf998471f;hpb=a37064c0ac3b1e67b04a9480852f5c9e701fb4d9;p=lyx.git diff --git a/src/mathed/math_extern.h b/src/mathed/math_extern.h index 9e2f23c8b5..94406652d0 100644 --- a/src/mathed/math_extern.h +++ b/src/mathed/math_extern.h @@ -1,14 +1,12 @@ #ifndef MATH_EXTERN_H #define MATH_EXTERN_H -#ifdef __GNUG__ -#pragma interface -#endif #include "LString.h" class NormalStream; class MapleStream; +class MaximaStream; class MathematicaStream; class MathMLStream; class OctaveStream; @@ -17,10 +15,11 @@ class MathArray; void write(MathArray const &, WriteStream &); void normalize(MathArray const &, NormalStream &); -void maplize(MathArray const &, MapleStream &); -void mathematicize(MathArray const &, MathematicaStream &); +void maple(MathArray const &, MapleStream &); +void maxima(MathArray const &, MaximaStream &); +void mathematica(MathArray const &, MathematicaStream &); void mathmlize(MathArray const &, MathMLStream &); -void octavize(MathArray const &, OctaveStream &); +void octave(MathArray const &, OctaveStream &); bool extractNumber(MathArray const & ar, int & i); bool extractNumber(MathArray const & ar, double & i);