lyx_mirror/src/mathed/math_extern.h
André Pönitz 4366ef931c - revive 1.1.6 eqnarray behaviour when pressing <Del> in the last position of a
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
2002-03-25 12:11:25 +00:00

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