]> git.lyx.org Git - lyx.git/blob - src/mathed/math_streamstr.h
more trivial tweaks to mathed bindings
[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 MathematicaStream;
16 class MathMLStream;
17 class OctaveStream;
18
19 //
20 // writing strings directly
21 //
22
23 WriteStream & operator<<(WriteStream & ws, string const & s);
24 NormalStream & operator<<(NormalStream & ns, string const & s);
25 MapleStream & operator<<(MapleStream & ms, string const & s);
26 MathematicaStream & operator<<(MathematicaStream & ms, string const & s);
27 MathMLStream & operator<<(MathMLStream & ms, string const & s);
28 OctaveStream & operator<<(OctaveStream & os, string const & s);
29 #endif