]> git.lyx.org Git - lyx.git/blob - src/mathed/math_streamstr.h
Andreas' patch to prevent crash on click on previewd inset
[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 #include <string>
16
17 class WriteStream;
18 class NormalStream;
19 class MapleStream;
20 class MaximaStream;
21 class MathematicaStream;
22 class MathMLStream;
23 class OctaveStream;
24
25 //
26 // writing strings directly
27 //
28
29 WriteStream & operator<<(WriteStream & ws, std::string const & s);
30 NormalStream & operator<<(NormalStream & ns, std::string const & s);
31 MapleStream & operator<<(MapleStream & ms, std::string const & s);
32 MaximaStream & operator<<(MaximaStream & ms, std::string const & s);
33 MathematicaStream & operator<<(MathematicaStream & ms, std::string const & s);
34 MathMLStream & operator<<(MathMLStream & ms, std::string const & s);
35 OctaveStream & operator<<(OctaveStream & os, std::string const & s);
36 #endif