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