mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-27 19:40:10 +00:00
cd19a0b33b
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@4506 a592a061-630c-0410-9148-cb99ea01b6c8
28 lines
724 B
C++
28 lines
724 B
C++
#ifndef MATH_EXTERN_H
|
|
#define MATH_EXTERN_H
|
|
|
|
#include "LString.h"
|
|
|
|
class NormalStream;
|
|
class MapleStream;
|
|
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 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
|