mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
33a28bdc9c
c_str() all places where it is not needed anymore. (I also add config.h to several files that was missing it) + added s string constructor to math_symbolinset I also change some "while(" to "while (" mmm ... yes ... I add a "zero()" function to LyXLength... an "empty()" function did not seem appropriate. changed a couple of places that checked on length.value() != 0.0. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@3149 a592a061-630c-0410-9148-cb99ea01b6c8
23 lines
545 B
C++
23 lines
545 B
C++
// -*- C++ -*-
|
|
#ifndef MATH_STREAMSTR_H
|
|
#define MATH_STREAMSTR_H
|
|
|
|
#include "LString.h"
|
|
|
|
class WriteStream;
|
|
class NormalStream;
|
|
class MapleStream;
|
|
class MathMLStream;
|
|
class OctaveStream;
|
|
|
|
//
|
|
// writing strings directly
|
|
//
|
|
|
|
WriteStream & operator<<(WriteStream & ws, string const & s);
|
|
NormalStream & operator<<(NormalStream & ns, string const & s);
|
|
MapleStream & operator<<(MapleStream & ms, string const & s);
|
|
MathMLStream & operator<<(MathMLStream & ms, string const & s);
|
|
OctaveStream & operator<<(OctaveStream & os, string const & s);
|
|
#endif
|