]> git.lyx.org Git - lyx.git/blob - src/mathed/math_streamstr.h
Replace LString.h with support/std_string.h,
[lyx.git] / src / mathed / math_streamstr.h
1 // -*- C++ -*-
2 /**
3  * \file math_streamstr.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author André Pönitz
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #ifndef MATH_STREAMSTR_H
13 #define MATH_STREAMSTR_H
14
15
16 #include "support/std_string.h"
17
18 class WriteStream;
19 class NormalStream;
20 class MapleStream;
21 class MaximaStream;
22 class MathematicaStream;
23 class MathMLStream;
24 class OctaveStream;
25
26 //
27 // writing strings directly
28 //
29
30 WriteStream & operator<<(WriteStream & ws, string const & s);
31 NormalStream & operator<<(NormalStream & ns, string const & s);
32 MapleStream & operator<<(MapleStream & ms, string const & s);
33 MaximaStream & operator<<(MaximaStream & ms, string const & s);
34 MathematicaStream & operator<<(MathematicaStream & ms, string const & s);
35 MathMLStream & operator<<(MathMLStream & ms, string const & s);
36 OctaveStream & operator<<(OctaveStream & os, string const & s);
37 #endif