lyx_mirror/src/mathed/math_streamstr.h

18 lines
249 B
C
Raw Normal View History

#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