]> git.lyx.org Git - lyx.git/blob - src/mathed/math_streamstr.h
Geof Piroux's patch for Mathematica support
[lyx.git] / src / mathed / math_streamstr.h
1 // -*- C++ -*-
2 #ifndef MATH_STREAMSTR_H
3 #define MATH_STREAMSTR_H
4
5 #include "LString.h"
6
7 class WriteStream;
8 class NormalStream;
9 class MapleStream;
10 class MathematicaStream;
11 class MathMLStream;
12 class OctaveStream;
13
14 //
15 // writing strings directly
16 //
17
18 WriteStream & operator<<(WriteStream & ws, string const & s);
19 NormalStream & operator<<(NormalStream & ns, string const & s);
20 MapleStream & operator<<(MapleStream & ms, string const & s);
21 MathematicaStream & operator<<(MathematicaStream & ms, string const & s);
22 MathMLStream & operator<<(MathMLStream & ms, string const & s);
23 OctaveStream & operator<<(OctaveStream & os, string const & s);
24 #endif