mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
18 lines
249 B
C
18 lines
249 B
C
|
#ifndef MATH_STREAMSTR_H
|
||
|
#define MATH_STREAMSTR_H
|
||
|
|
||
|
#include "LString.h"
|
||
|
#include "math_mathmlstream.h"
|
||
|
|
||
|
//
|
||
|
// writing strings directly
|
||
|
//
|
||
|
|
||
|
inline WriteStream & operator<<(WriteStream & ws, string const & s)
|
||
|
{
|
||
|
ws << s.c_str();
|
||
|
return ws;
|
||
|
}
|
||
|
|
||
|
#endif
|