X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2Fmath_extern.h;h=3fcf32a5b1e502e90a9ed67224d8bb8e92f8d025;hb=12ac7f339e14c4f76a24f45a21c0697303099145;hp=933129c1a6e74507593f937a25519d75ca6b430b;hpb=cd19a0b33bcc87b46c3567928d85a4c724f49db5;p=lyx.git diff --git a/src/mathed/math_extern.h b/src/mathed/math_extern.h index 933129c1a6..3fcf32a5b1 100644 --- a/src/mathed/math_extern.h +++ b/src/mathed/math_extern.h @@ -1,10 +1,23 @@ +// -*- C++ -*- +/** + * \file math_extern.h + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. + * + * \author André Pönitz + * + * Full author contact details are available in file CREDITS. + */ + #ifndef MATH_EXTERN_H #define MATH_EXTERN_H -#include "LString.h" +#include + class NormalStream; class MapleStream; +class MaximaStream; class MathematicaStream; class MathMLStream; class OctaveStream; @@ -13,15 +26,16 @@ 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); -MathArray pipeThroughExtern(string const & lang, string const & extra, +MathArray pipeThroughExtern(std::string const & lang, std::string const & extra, MathArray const & ar); #endif