]> git.lyx.org Git - lyx.git/blob - src/mathed/math_streamstr.h
several smallish changes/bugfixes/left overs from Porto
[lyx.git] / src / mathed / math_streamstr.h
1 // -*- C++ -*-
2 #ifndef MATH_STREAMSTR_H
3 #define MATH_STREAMSTR_H
4
5 #include "LString.h"
6
7 class WriteStream;
8 class NormalStream;
9 class MapleStream;
10 class MathMLStream;
11 class OctaveStream;
12
13 //
14 // writing strings directly
15 //
16
17 WriteStream & operator<<(WriteStream & ws, string const & s);
18 NormalStream & operator<<(NormalStream & ns, string const & s);
19 MapleStream & operator<<(MapleStream & ms, string const & s);
20 MathMLStream & operator<<(MathMLStream & ms, string const & s);
21 OctaveStream & operator<<(OctaveStream & os, string const & s);
22 #endif