mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-13 14:32:04 +00:00
ac7c86da74
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@5535 a592a061-630c-0410-9148-cb99ea01b6c8
34 lines
836 B
C++
34 lines
836 B
C++
#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;
|
|
class WriteStream;
|
|
class MathArray;
|
|
|
|
void write(MathArray const &, WriteStream &);
|
|
void normalize(MathArray const &, NormalStream &);
|
|
void maplize(MathArray const &, MapleStream &);
|
|
void maximize(MathArray const &, MaximaStream &);
|
|
void mathematicize(MathArray const &, MathematicaStream &);
|
|
void mathmlize(MathArray const &, MathMLStream &);
|
|
void octavize(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 const & ar);
|
|
|
|
#endif
|