]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_streamstr.h
Get rid of lyxstring, remove usage of STRCONV.
[lyx.git] / src / mathed / math_streamstr.h
index 3238106e0497e61e433399b5e0b3a3b3fc13232c..d76b1cb66e20548a6ef8f988dfc0ebd6b3f09923 100644 (file)
@@ -1,12 +1,25 @@
 // -*- C++ -*-
+/**
+ * \file math_streamstr.h
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
+ *
+ * \author André Pönitz
+ *
+ * Full author contact details are available in file CREDITS.
+ */
+
 #ifndef MATH_STREAMSTR_H
 #define MATH_STREAMSTR_H
 
-#include "LString.h"
+
+#include "support/std_string.h"
 
 class WriteStream;
 class NormalStream;
 class MapleStream;
+class MaximaStream;
+class MathematicaStream;
 class MathMLStream;
 class OctaveStream;
 
@@ -17,6 +30,8 @@ class OctaveStream;
 WriteStream & operator<<(WriteStream & ws, string const & s);
 NormalStream & operator<<(NormalStream & ns, string const & s);
 MapleStream & operator<<(MapleStream & ms, string const & s);
+MaximaStream & operator<<(MaximaStream & ms, string const & s);
+MathematicaStream & operator<<(MathematicaStream & ms, string const & s);
 MathMLStream & operator<<(MathMLStream & ms, string const & s);
 OctaveStream & operator<<(OctaveStream & os, string const & s);
 #endif