2001-11-09 10:44:24 +00:00
|
|
|
#ifndef MATH_EXTERN_H
|
|
|
|
#define MATH_EXTERN_H
|
|
|
|
|
2002-09-11 09:14:57 +00:00
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma interface
|
|
|
|
#endif
|
|
|
|
|
2002-06-18 15:44:30 +00:00
|
|
|
#include "LString.h"
|
|
|
|
|
2001-11-09 10:44:24 +00:00
|
|
|
class NormalStream;
|
|
|
|
class MapleStream;
|
2002-07-01 11:17:14 +00:00
|
|
|
class MathematicaStream;
|
2001-11-09 10:44:24 +00:00
|
|
|
class MathMLStream;
|
|
|
|
class OctaveStream;
|
|
|
|
class WriteStream;
|
|
|
|
class MathArray;
|
|
|
|
|
|
|
|
void write(MathArray const &, WriteStream &);
|
|
|
|
void normalize(MathArray const &, NormalStream &);
|
|
|
|
void maplize(MathArray const &, MapleStream &);
|
2002-07-01 11:17:14 +00:00
|
|
|
void mathematicize(MathArray const &, MathematicaStream &);
|
2001-11-09 10:44:24 +00:00
|
|
|
void mathmlize(MathArray const &, MathMLStream &);
|
|
|
|
void octavize(MathArray const &, OctaveStream &);
|
|
|
|
|
2002-03-25 12:11:25 +00:00
|
|
|
bool extractNumber(MathArray const & ar, int & i);
|
|
|
|
bool extractNumber(MathArray const & ar, double & i);
|
|
|
|
|
2002-06-18 15:44:30 +00:00
|
|
|
MathArray pipeThroughExtern(string const & lang, string const & extra,
|
|
|
|
MathArray const & ar);
|
|
|
|
|
2001-11-09 10:44:24 +00:00
|
|
|
#endif
|