mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
44cd0fc9a1
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@7862 a592a061-630c-0410-9148-cb99ea01b6c8
42 lines
1.0 KiB
C++
42 lines
1.0 KiB
C++
// -*- C++ -*-
|
|
/**
|
|
* \file math_extern.h
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author André Pönitz
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#ifndef MATH_EXTERN_H
|
|
#define MATH_EXTERN_H
|
|
|
|
#include <string>
|
|
|
|
|
|
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 maple(MathArray const &, MapleStream &);
|
|
void maxima(MathArray const &, MaximaStream &);
|
|
void mathematica(MathArray const &, MathematicaStream &);
|
|
void mathmlize(MathArray const &, MathMLStream &);
|
|
void octave(MathArray const &, OctaveStream &);
|
|
|
|
bool extractNumber(MathArray const & ar, int & i);
|
|
bool extractNumber(MathArray const & ar, double & i);
|
|
|
|
MathArray pipeThroughExtern(std::string const & lang, std::string const & extra,
|
|
MathArray const & ar);
|
|
|
|
#endif
|