mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-10 20:04:46 +00:00
30b18aec37
output routines. The idea is that in some cases people may not want to use MathML, so we are going to try to give options. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@33936 a592a061-630c-0410-9148-cb99ea01b6c8
48 lines
1.1 KiB
C++
48 lines
1.1 KiB
C++
// -*- C++ -*-
|
|
/**
|
|
* \file MathExtern.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 "support/strfwd.h"
|
|
|
|
namespace lyx {
|
|
|
|
class HtmlStream;
|
|
class NormalStream;
|
|
class MapleStream;
|
|
class MaximaStream;
|
|
class MathematicaStream;
|
|
class MathStream;
|
|
class OctaveStream;
|
|
class WriteStream;
|
|
class MathData;
|
|
|
|
void write(MathData const &, WriteStream &);
|
|
void htmlize(MathData const &, HtmlStream &);
|
|
void normalize(MathData const &, NormalStream &);
|
|
void maple(MathData const &, MapleStream &);
|
|
void maxima(MathData const &, MaximaStream &);
|
|
void mathematica(MathData const &, MathematicaStream &);
|
|
void mathmlize(MathData const &, MathStream &);
|
|
void octave(MathData const &, OctaveStream &);
|
|
|
|
bool extractNumber(MathData const & ar, int & i);
|
|
bool extractNumber(MathData const & ar, double & i);
|
|
|
|
MathData pipeThroughExtern(std::string const & language,
|
|
docstring const & extra, MathData const & ar);
|
|
|
|
|
|
} // namespace lyx
|
|
|
|
#endif
|