]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/MathData.h
cursor is no more damaging the background. L-shaped cursor is broken right now....
[lyx.git] / src / mathed / MathData.h
index eb0441106acc0be336afcc44b214322d6453d7d1..b808dba5790a43304cca06eea1ef6decada528b3 100644 (file)
 #ifndef MATH_DATA_H
 #define MATH_DATA_H
 
-#include <iosfwd>
 #include <vector>
 
 #include "MathAtom.h"
 #include "dimension.h"
 
+#include "support/docstream.h"
+
+
+namespace lyx {
+
 class BufferView;
 class LaTeXFeatures;
 class ReplaceData;
@@ -53,7 +57,7 @@ public:
 
 public:
        ///
-       MathArray();
+       MathArray() {}
        ///
        MathArray(const_iterator from, const_iterator to);
        ///
@@ -157,6 +161,10 @@ private:
 
 ///
 std::ostream & operator<<(std::ostream & os, MathArray const & ar);
+///
+odocstream & operator<<(odocstream & os, MathArray const & ar);
+
 
+} // namespace lyx
 
 #endif