mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-27 19:59:46 +00:00
4366ef931c
cell. - allow additional argument to math-macros for drawing purposes git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@3823 a592a061-630c-0410-9148-cb99ea01b6c8
21 lines
521 B
C++
21 lines
521 B
C++
#ifndef MATH_EXTERN_H
|
|
#define MATH_EXTERN_H
|
|
|
|
class NormalStream;
|
|
class MapleStream;
|
|
class MathMLStream;
|
|
class OctaveStream;
|
|
class WriteStream;
|
|
class MathArray;
|
|
|
|
void write(MathArray const &, WriteStream &);
|
|
void normalize(MathArray const &, NormalStream &);
|
|
void maplize(MathArray const &, MapleStream &);
|
|
void mathmlize(MathArray const &, MathMLStream &);
|
|
void octavize(MathArray const &, OctaveStream &);
|
|
|
|
bool extractNumber(MathArray const & ar, int & i);
|
|
bool extractNumber(MathArray const & ar, double & i);
|
|
|
|
#endif
|