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